-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
73 lines (73 loc) · 2.09 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "formstate-x",
"version": "3.1.3",
"description": "Extended alternative for formstate",
"repository": {
"type": "git",
"url": "https://github.com/qiniu/formstate-x.git"
},
"main": "lib/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"exports": {
".": "./esm/index.js",
"./adapter": "./esm/adapter/index.js"
},
"typesVersions": {
"*": {
"adapter": [
"./esm/adapter/index.d.ts"
]
}
},
"scripts": {
"clean": "rm -rf ./esm ./lib ./dumi/dist",
"lint": "tsc --noEmit",
"test": "jest",
"validate": "npm run lint && npm run test",
"coverage": "rm -rf coverage && jest --coverage",
"dev:doc:src": "rm -rf ./dumi/src && tsc --module es6 --outDir ./dumi/src --inlineSources --watch",
"dev:doc": "npm run build:doc:src && APP_ROOT=dumi dumi dev",
"build:esm": "rm -rf ./esm && tsc --module es6 --outDir ./esm",
"build:lib": "rm -rf ./lib && tsc",
"build:doc:src": "rm -rf ./dumi/src && tsc --module es6 --outDir ./dumi/src --inlineSources",
"build:doc": "rm -rf ./dumi/dist && npm run build:doc:src && APP_ROOT=dumi dumi build",
"build": "npm run build:esm && npm run build:lib",
"prepublishOnly": "npm run test && npm run build",
"ci": "npm run lint && npm run coverage && npm run build && npm run build:doc"
},
"keywords": [
"form",
"state",
"mobx",
"formstate"
],
"peerDependencies": {
"mobx": ">=6.0.0"
},
"author": "[email protected]",
"license": "Apache-2.0",
"devDependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.1.1",
"@mui/material": "^5.1.1",
"@types/jest": "^27.0.0",
"@types/node": "^16.0.0",
"antd": "^4.16.13",
"dumi": "^1.1.32",
"formstate": "^2.0.0",
"formstate-x-v2": "npm:formstate-x@^2.0.2",
"jest": "^27.0.0",
"mobx": "^6.0.4",
"mobx-react": "^7.2.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-icecream": "^2.1.2",
"ts-jest": "^27.0.0",
"typescript": "^4.1.5"
},
"engines": {
"node": ">=16.0.0"
}
}