-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 2.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@jn/lowcode-icons",
"version": "0.0.0-development",
"description": "lowcode-icons of tenx-ui and antd",
"repository": {
"type": "git",
"url": "https://github.com/Jandiasnow/lowcode-icons.git"
},
"license": "MIT",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"docs-dist"
],
"scripts": {
"build": "npm run cli -t antd && father build",
"build:watch": "father dev",
"cli": "rm -rf lowcode && rm -rf src && cd cli && ts-node main.ts",
"dev": "npm run cli -t antd && dumi dev",
"docs:build": "dumi build",
"doctor": "father doctor",
"lint": "npm run lint:es && npm run lint:css",
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install && dumi setup",
"prepublishOnly": "father doctor && npm run build",
"semantic-release": "semantic-release",
"start": "npm run dev"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@ant-design/icons": "^5.1.4",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/git": "^9.0.0",
"@types/node": "^20.10.5",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@umijs/lint": "^4.0.0",
"commander": "^11.0.0",
"conventional-changelog-cmyr-config": "^1.2.3",
"cross-env": "^7.0.3",
"dotenv-cli": "^4.0.0",
"dumi": "^2.2.13",
"eslint": "^8.23.0",
"father": "^4.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"prettier-plugin-packagejson": "^2.2.18",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"semantic-release": "^22.0.12",
"stylelint": "^14.9.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"engines": {
"node": ">=18.17.0",
"pnpm": ">=8.1.0"
},
"publishConfig": {
"access": "public"
},
"authors": [
],
"yunti": {
"umd": {
"library": "TenxUiIconMaterials",
"entry": [
"/dist/umd/index.main.js"
],
"externals": {
"@ant-design/icons": ">=4.7.0",
"react": ">=16.9.0",
"lodash": ">=4.17.21"
}
},
"lowCode": {
"meta": "/dist/umd/meta.main.js",
"editEntry": [
"/dist/umd/index.main.js"
]
}
}
}