-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "@shuvi/redox-persist",
"version": "0.0.7",
"description": "A Redux Framework",
"homepage": "https://shuvijs.github.io/shuvijs.org",
"sideEffects": false,
"main": "lib/index.js",
"module": "esm/index.js",
"browser": "esm/index.js",
"types": "esm/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"dev": "run-p watch:*",
"watch:esm": "tsc -p tsconfig.build.json -m esnext --outDir esm -w",
"watch:cjs": "tsc -p tsconfig.build.json -m commonjs --outDir lib -w",
"build": "run-p clean && run-p build:*",
"build:esm": "tsc -p tsconfig.build.json -m esnext --outDir esm",
"build:cjs": "tsc -p tsconfig.build.json -m commonjs --outDir lib",
"clean": "rimraf lib esm"
},
"files": [
"esm",
"lib"
],
"engines": {
"node": ">=10"
},
"dependencies": {
},
"devDependencies": {
"@shuvi/redox": "0.0.7"
},
"authors": [],
"bugs": {
"url": "https://github.com/shuvijs/redox/issues"
},
"keywords": [
"@shuvi/redox",
"redux",
"state management",
"javascript",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shuvijs/redox.git"
}
}