-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "@nutui/icons-react",
"version": "2.0.1",
"scripts": {
"dev": "vite",
"build": "vite build --config vite.config.build.es.ts && vite build --config vite.config.build.umd.ts && vite build --config vite.config.build.css.ts && vite build --config vite.config.dts.ts",
"preview": "vite preview",
"release": "release-it",
"release:beta": "release-it --preRelease=beta"
},
"main": "dist/lib/index.umd.js",
"module": "dist/es/index.es.js",
"style": "dist/style_icon.css",
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"README.md",
"package.json",
"LICENSE",
"CHANGELOG.md"
],
"sideEffects": [
"*.css",
"**/index.es.js"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": "jdf2e",
"license": "MIT",
"release-it": {
"git": {
"tag": false,
"commitMessage": "release: @nutui/icons-taro ${version}",
"addUntrackedFiles": true,
"requireCleanWorkingDir": false
}
},
"devDependencies": {
"@nutui/nutui-react": "^1.4.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"camelcase": "^7.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"release-it": "^15.5.1",
"sass": "^1.56.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1"
}
}