-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "symstorage",
"version": "1.0.3",
"description": "前端存储方案的简易封装",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types",
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/node": "^15.6.1",
"babel-loader": "^8.2.2",
"html-webpack-plugin": "^5.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.50.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^17.4.3",
"typescript": "^4.2.4",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"dev": "cd demo/react && webpack serve",
"build": "node scripts/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xmy6364/storage.git"
},
"bugs": {
"url": "https://github.com/xmy6364/storage/issues"
},
"homepage": "https://github.com/xmy6364/storage#readme",
"keywords": [
"storage",
"indexeddb",
"localstorage",
"sessionstorage"
],
"author": "Mengyu Xu",
"license": "MIT"
}