-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
49
50
51
52
53
54
55
56
{
"name": "mpkit",
"private": true,
"description": "mpkit 是一个模块化的开发多平台小程序的 JavaScript 实用工具库",
"scripts": {
"build": "node build/clear.js && tsc --emitDeclarationOnly && node --max-old-space-size=2048 build/build.js",
"clear": "node build/clear.js",
"dev": "tsc --emitDeclarationOnly",
"test": "mocha packages/**/test/*.js"
},
"author": "imingyu <mingyuhisoft@163.com>",
"publishConfig": {
"access": "public"
},
"keywords": [
"mpkit",
"小程序",
"miniprogram",
"weapp",
"wxapp",
"微信小程序",
"支付宝小程序",
"百度小程序",
"字节跳动小程序",
"setData",
"set-data",
"setData优化",
"diff",
"小程序优化"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^8.1.0",
"babel-plugin-lodash": "^3.3.4",
"chai": "^4.2.0",
"fse": "^4.0.1",
"lerna": "^3.22.1",
"mocha": "^8.2.1",
"rollup": "^2.35.1",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^4.2.0-dev.20210126"
},
"dependencies": {
"tslib": "^2.1.0"
}
}