-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "@sunmao-ui/resolver",
"version": "0.0.2",
"description": "a tool for solve sunmao schema conflict",
"author": "Bowen Tan <[email protected]>",
"homepage": "https://github.com/webzard-io/sunmao-resolver",
"license": "Apache-2.0",
"main": "bundle/lib.js",
"module": "bundle/esm/lib.js",
"types": "lib/lib.d.ts",
"files": [
"bundle",
"lib"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:library": "tsup src/lib.ts --format cjs,esm --legacy-output --clean --sourcemap --outDir bundle",
"typings": "tsc --emitDeclarationOnly",
"prepublish": "npm run typings && npm run build:library",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webzard-io/sunmao-resolver"
},
"dependencies": {
"@arco-design/web-react": "^2.34.0",
"@emotion/css": "^11.7.1",
"@sunmao-ui/core": "^0.8.0",
"diff": "^5.1.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"node-diff3": "^3.1.2",
"react": "16.x || 17.x",
"react-dom": "16.x || 17.x"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.18.6",
"@types/diff": "^5.0.2",
"@types/jest": "^29.2.2",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vitejs/plugin-react": "^2.0.1",
"babel-jest": "^27.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.25.1",
"jest": "^27.2.1",
"jest-css-modules": "^2.1.0",
"tsup": "^6.5.0",
"typescript": "^4.5.0",
"vite": "^3.2.3"
}
}