forked from FightingDesign/fighting-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.44 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
{
"name": "fighting-design",
"private": true,
"workspaces": [
"packages/*",
"docs",
"start"
],
"engines": {
"node": ">= 16"
},
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"clean": "rimraf dist",
"start": "pnpm run -C start dev",
"dev:docs": "pnpm run -C docs dev",
"build": "pnpm clean && pnpm build:theme && pnpm build:components && pnpm move",
"build:components": "rollup -c build/rollup.config.ts",
"build:theme": "vite build packages/fighting-theme",
"build:docs": "pnpm run -C docs build",
"build:start": "pnpm run -C start build",
"serve:docs": "pnpm run -C docs serve",
"move": "node build/moveFile.ts",
"test": "vitest",
"prettier": "prettier --write .",
"commit": "cz",
"build:vite:components": "vite build --config vite.config.ts",
"build:vite:theme": "vite build --config vite.config.theme.ts"
},
"dependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@fighting-design/fighting-components": "workspace:*",
"@fighting-design/fighting-theme": "workspace:*",
"@fighting-design/fighting-type": "workspace:*",
"@fighting-design/fighting-utils": "workspace:*",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/test-utils": "^2.0.0-rc.18",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.14.40",
"happy-dom": "^3.2.2",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"node-sass": "^7.0.1",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"rollup": "^2.73.0",
"rollup-plugin-collect-sass": "^1.0.9",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.50.1",
"typescript": "^4.6.4",
"vite": "^2.9.5",
"vite-plugin-dts": "^1.2.0",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vitest": "^0.10.0",
"vue": "^3.2.33",
"vue-tsc": "^0.34.10"
},
"devDependencies": {
"@types/node": "^17.0.42",
"rimraf": "^3.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}