-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.04 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
{
"name": "@shed/cli",
"version": "0.2.1",
"description": "mini-shed 命令行工具",
"module": "dist/index.js",
"files": [
"package.json",
"dist",
"platforms"
],
"bin": {
"shed": "dist/index.js",
"minished": "dist/index.js",
"mini-shed": "dist/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"watch": "rimraf dist/* && tsc -w",
"build": "rimraf dist/* && tsc",
"test": "yarn global add file:$PWD && shed"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.12.14",
"typescript": "^3.7.2"
},
"dependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-typescript": "^7.7.2",
"axios": "^0.19.0",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"extract-zip": "^1.6.7",
"figlet": "^1.2.4",
"fs-extra": "^8.1.0",
"git-clone": "^0.1.0",
"glob": "^7.1.6",
"live-server": "^1.2.1",
"ora": "^4.0.3",
"qrcode": "^1.4.4",
"rimraf": "^3.0.0",
"rollup": "^1.27.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy-glob": "^0.3.1",
"rollup-plugin-generate-html-template": "^1.6.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.2",
"spritesheet-js": "^1.2.6",
"update-check": "^1.5.3"
},
"keywords": [
"mini-game",
"wechat"
],
"author": "nshen <nshen121@gmail.com>",
"homepage": "https://github.com/nshen/mini-shed#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nshen/mini-shed.git"
},
"bugs": {
"url": "https://github.com/nshen/mini-shed/issues"
},
"license": "MIT",
"gitHead": "a5a3082dd23fc78f64cea163d3c105f4aaf8c978"
}