-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.47 KB
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
{
"name": "@cmu-sei/sei-design-system",
"version": "4.11.0",
"scripts": {
"dev": "npx vite",
"build": "npx vite build && vue-tsc --noEmit",
"serve": "npx vite preview",
"lint": "NODE_OPTIONS='--trace-warnings' npx eslint .",
"lint:fix": "NODE_OPTIONS='--trace-warnings' npx eslint . --fix",
"lint:ci": "npm run lint && npm run typecheck",
"check:tailwindcss": "node scripts/check-tailwind-components.js",
"typecheck": "vue-tsc --noEmit",
"test": "LIB_NAME=SeiDesignSystem LIB_ROOT=src/components npx vitest run -c vite-library.config.js",
"test:watch": "LIB_NAME=SeiDesignSystem LIB_ROOT=src/components npx vitest -c vite-library.config.js",
"test:clean": "npx vitest run -u",
"coverage": "LIB_NAME=SeiDesignSystem LIB_ROOT=src/components npx vitest run -c vite-library.config.js --coverage",
"change-registry-in-package-lock": "./scripts/update-package-lock.sh",
"bundle:release": "./scripts/bundle-release.sh",
"create-component": "./scripts/create-component.sh",
"release": "./scripts/release.sh",
"storybook": "npx storybook dev -p 6006 --disable-telemetry",
"build-storybook": "npx storybook build --disable-telemetry",
"gen-volar-dts": "./scripts/gen-component-declarations.sh"
},
"files": [
"storybook-static",
"tailwindcss",
"open-sans",
"source-serif",
"dist",
"src",
"volar.d.ts"
],
"sideEffects": false,
"module": "./dist/index.mjs",
"type": "module",
"exports": {
".": {
"types": "./dist/types/src/components/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
},
"./tailwindcss/*": "./tailwindcss/*",
"./open-sans/*": "./open-sans/*",
"./source-serif/*": "./source-serif/*",
"./dist/*": "./dist/*",
"./src/*": "./src/*",
"./volar": "./volar.d.ts"
},
"types": "./dist/types/src/components/index.d.ts",
"main": "./dist/index.umd.js",
"peerDependencies": {
"@tailwindcss/postcss": ">=4.0.0",
"tailwindcss": ">=4.0.0",
"vue": ">=3.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@floating-ui/dom": "^1.7.6",
"@iconify-json/fa7-regular": "^1.2.3",
"@iconify-json/fa7-solid": "^1.2.4",
"@storybook/addon-docs": "^10.4.6",
"@storybook/addon-links": "^10.4.6",
"@storybook/vue3-vite": "^10.4.6",
"@tailwindcss/postcss": "^4.3.1",
"@types/beautify": "^0.0.3",
"@types/d3": "^7.4.3",
"@unhead/vue": "^3.1.6",
"@vitejs/plugin-vue": "^6.0.7",
"@vitest/coverage-v8": "^4.1.0",
"@vue/compiler-sfc": "^3.5.13",
"@vue/test-utils": "^2.4.11",
"@vueuse/core": "^14.3.0",
"axe-core": "^4.12.1",
"beautify": "^0.0.8",
"d3": "^7.9.0",
"date-fns": "^4.4.0",
"esbuild": "^0.28.1",
"eslint": "^10.5.0",
"eslint-plugin-storybook": "^10.4.6",
"eslint-plugin-vue": "^10.9.2",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"mitt": "^3.0.1",
"postcss": "^8.5.15",
"storybook": "^10.4.6",
"tailwindcss": "^4.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.62.0",
"unplugin-auto-import": "^21.0.0",
"unplugin-icons": "^23.0.1",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.1.0",
"vitest": "^4.0.15",
"vue": "^3.5.13",
"vue-loader": "^17.4.2",
"vue-router": "^5.1.0",
"vue-tsc": "^3.3.5"
},
"engines": {
"node": ">=20.17.0"
},
"overrides": {
"storybook": "$storybook"
},
"allowScripts": {
"fsevents@2.3.3": true,
"esbuild@0.28.1": true
}
}