-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.25 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
{
"name": "web-components",
"version": "2.0.6",
"private": false,
"sideEffects": [
"*.vue",
"*.css"
],
"type": "module",
"files": [
"dist",
"dist/src"
],
"main": "./dist/main.js",
"types": "./dist/lib/main.d.ts",
"scripts": {
"dev": "vite",
"rollup": "rollup -c",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"storybook-docs": "storybook --docs --no-manager-cache",
"build-storybook": "storybook build -o ./dist",
"build-storybook-docs": "storybook build --docs",
"prepare": "husky && npm run build",
"generate-icon-types": "npx tsx src/shared/generate-icon-types.ts"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"vue/setup-compiler-macros": true
}
},
"peerDependencies": {
"vue": "^3.5.13"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.3",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-themes": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/manager-api": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/vue3": "^8.4.7",
"@storybook/vue3-vite": "^8.4.7",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.12.7",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.26.0",
"husky": "^9.1.6",
"npm-run-all2": "^6.2.0",
"postcss": "^8.4.35",
"prettier": "^3.3.1",
"prettier-plugin-tailwindcss": "^0.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.82.0",
"storybook": "^8.4.7",
"tailwindcss": "^3.4.16",
"tsx": "^4.19.2",
"typescript": "~5.6.3",
"vite": "^5.4.9",
"vite-plugin-dts": "4.3.0",
"vite-svg-loader": "^5.1.0",
"vue-tsc": "^2.1.10"
}
}