-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.28 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.28 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
{
"name": "@radpack/cli",
"version": "1.0.9",
"description": "Rapid Application Development Packaging CLI",
"keywords": [
"radpack",
"cli",
"command-line",
"dev-server",
"local-server",
"registry",
"merge",
"development"
],
"bin": {
"radpack": "./lib/index.js"
},
"files": [
"lib/"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "rollup -c"
},
"homepage": "https://github.com/godaddy/radpack/tree/main/packages/cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/godaddy/radpack.git",
"directory": "packages/cli"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@radpack/core": "^1",
"@radpack/server": "^1"
},
"peerDependenciesMeta": {
"@radpack/server": {
"optional": true
}
},
"dependencies": {
"connect": "^3.7.0",
"cross-spawn": "^7.0.6",
"glob": "^7.2.3",
"opener": "^1.5.2",
"serve-static": "^1.15.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@radpack/core": "^1.0.7",
"@radpack/server": "^1.1.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.2"
},
"license": "MIT"
}