-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 KB
/
package.json
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
{
"name": "taro-weapp-upload",
"author": "tangbzai",
"license": "MIT",
"version": "0.0.8",
"description": "batch upload WeChat miniprogram for Taro project",
"repository": "https://github.com/tangbzai/weapp-upload.git",
"homepage": "https://github.com/tangbzai/weapp-upload",
"keywords": [
"miniprogram",
"批量上传微信小程序",
"上传微信小程序"
],
"files": [
"dist/",
"index.d.ts"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"bin": {
"weapp-upload": "./dist/bin.cjs"
},
"types": "./index.d.ts",
"scripts": {
"watch": "rollup -wc --configPlugin @rollup/plugin-typescript",
"build": "rollup -c --configPlugin @rollup/plugin-typescript",
"prettier": "prettier -c --write \"src/**/*\""
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-typescript": "^9.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/node": "^18.19.34",
"prettier": "^2.8.1",
"rollup": "^3.2.2",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"dependencies": {
"commander": "^11.1.0",
"miniprogram-ci": "^1.9.16"
},
"engines": {
"node": ">=16.x"
}
}