-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "@seastart/wx-storage-wrapper",
"version": "1.0.2",
"description": "storage",
"author": "[email protected]",
"main": "dist/wx-storage-wrapper.cjs.js",
"module": "dist/wx-storage-wrapper.esm.js",
"browser": "dist/wx-storage-wrapper.umd.js",
"types": "src/index.d.ts",
"files": [
"src",
"dist/*.js"
],
"scripts": {
"test": "jest",
"build": "rollup -c --bundleConfigAsCjs"
},
"keywords": [
"storage",
"wx"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"babel-jest": "^29.2.2",
"jest": "^29.2.2",
"miniprogram-api-typings": "^3.6.0",
"rollup": "^3.2.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"dependencies": {}
}