-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
95 lines (95 loc) · 2.88 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
{
"name": "primitives",
"type": "module",
"packageManager": "[email protected]",
"repository": "oku-ui/primitives",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "esno scripts/dev.ts",
"build": "pnpm turbo build",
"docs:build": "pnpm --filter docs docs:build",
"nuxt:generate": "pnpm --filter nuxt-app generate",
"build:skip": "pnpm nx run-many -t build --skip-nx-cache",
"story": "pnpm storybook dev -p 6006 --no-open",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:nuxt": "vitest -c vitest.nuxt.config.ts --coverage",
"coverage": "vitest run --coverage",
"build:storybook": "pnpm storybook build",
"typecheck": "tsc --noEmit",
"clean": "pnpm nx run-many -t clean",
"clean:node": "rimraf 'packages/**/node_modules' 'playground/**/node_modules' 'node_modules'",
"clean:dist": "rimraf 'packages/**/dist' 'playground/**/dist'",
"update:version": "esno scripts/update-version.ts",
"prepare": "npx simple-git-hooks",
"scripts:genpackage": "esno scripts/generateAliasCode.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@clack/prompts": "^0.7.0",
"@egoist/tailwindcss-icons": "^1.8.1",
"@floating-ui/vue": "^1.1.5",
"@iconify-json/ph": "^1.2.1",
"@oku-ui/primitives": "workspace:^",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/blocks": "^8.4.2",
"@storybook/testing-library": "^0.2.2",
"@storybook/vue3": "^8.4.2",
"@storybook/vue3-vite": "^8.4.2",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.4",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"bumpp": "^9.8.1",
"changelogen": "^0.5.7",
"chokidar": "^4.0.1",
"chromatic": "^11.18.0",
"eslint": "^9.14.0",
"eslint-plugin-storybook": "^0.11.0",
"esno": "^4.8.0",
"globby": "^14.0.2",
"happy-dom": "^15.11.0",
"jiti": "^2.4.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"nx": "^20.0.12",
"ofetch": "^1.4.1",
"pathe": "^1.1.2",
"postcss": "^8.4.47",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"storybook": "^8.4.2",
"storybook-dark-mode": "^4.0.2",
"tailwindcss": "^3.4.14",
"tsup": "^8.3.5",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.4",
"vitest-axe": "1.0.0-pre.3",
"vue": "^3.5.12",
"vue-component-meta": "^2.1.10"
},
"pnpm": {
"overrides": {
"@oku-ui/primitives": "workspace:^"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint . --fix"
}
}