-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.07 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@falkor/falkor-plugin-example",
"version": "1.0.0",
"description": "Falkor Commander plugin to demonstrate framework capabilities",
"private": true,
"author": {
"name": "Barnabas Bucsy",
"url": "https://github.com/theonethread"
},
"contributors": [
{
"name": "Barnabas Bucsy",
"url": "https://github.com/theonethread"
}
],
"license": "MIT",
"homepage": "https://github.com/theonethread/falkor-plugin-example/#readme",
"repository": "github:theonethread/falkor-plugin-example",
"bugs": "https://github.com/theonethread/falkor-plugin-example/issues",
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/falkor_framework"
},
{
"type": "individual",
"url": "https://www.linkedin.com/in/barnabas-bucsy"
}
],
"keywords": [
"falkor",
"plugin",
"example",
"task",
"demonstration",
"@falkor-plugin"
],
"type": "module",
"main": ".dist/index.js",
"module": ".dist/index.js",
"typings": ".dist/index.d.ts",
"files": [
".dist"
],
"os": [
"darwin",
"linux",
"win32"
],
"engines": {
"node": ">=16",
"npm": ">=8"
},
"engineStrict": true,
"scripts": {
"debug": "rimraf .dist && falkor-bundler --debug --input src/index.ts",
"release": "rimraf .dist && falkor-bundler --release --input src/index.ts",
"lint": "prettier --check . && cspell lint --no-progress --wordsOnly --unique --gitignore --exclude .git ** .*",
"prepublishOnly": "npm install --ignore-scripts --fund false && npm run lint && npm run release",
"start": "falkor-commander",
"test": "falkor-commander -- 1 2"
},
"devDependencies": {
"@types/node": "20.3.1",
"@types/shelljs": "0.8.12",
"@types/semver": "7.5.0",
"@types/figlet": "1.5.6",
"rimraf": "5.0.1",
"@falkor/falkor-cspell-config": "0.0.1",
"@falkor/falkor-prettier-config": "0.0.1",
"@falkor/falkor-bundler": "1.2.3"
},
"dependencies": {
"@falkor/falkor-library": "1.3.2"
},
"optionalDependencies": {
"@falkor/falkor-commander": "1.3.2"
}
}