-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.45 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
{
"name": "@fluxpress/cli",
"version": "0.1.6-alpha",
"engines": {
"node": ">=20.9.0"
},
"type": "module",
"bin": {
"fluxpress": "bin/fluxpress.js"
},
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js"
},
"dependencies": {
"@fluxpress/core": "^0.1.8-alpha",
"commander": "^12.1.0",
"express": "^4.19.2",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.0",
"concurrently": "^8.2.2",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"rollup": "^4.21.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"bin/",
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fluxpress/cli.git"
},
"keywords": [
"fluxpress",
"@fluxpress/cli"
],
"author": "liangpengyv",
"license": "MIT",
"bugs": {
"url": "https://github.com/fluxpress/cli/issues"
},
"homepage": "https://github.com/fluxpress/cli#readme",
"description": ""
}