forked from hybridly/hybridly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"type": "module",
"version": "0.7.13",
"private": true,
"packageManager": "pnpm@9.4.0",
"scripts": {
"release": "bumpp package.json packages/*/package.json --all --execute \"tsx build/bump-php-packages.ts\" --commit \"release: v\"",
"build": "pnpm -r build",
"test": "vitest --run",
"test:all": "pnpm run test && composer test",
"lint": "eslint \"**/*.{ts,vue,mjs}\"",
"lint:fix": "eslint \"**/*.{ts,vue,mjs}\" --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"ci": "pnpm run lint && pnpm run build && pnpm run test"
},
"devDependencies": {
"@fontsource-variable/rubik": "^5.0.22",
"@hybridly/core": "workspace:*",
"@hybridly/utils": "workspace:*",
"@hybridly/vite": "workspace:*",
"@hybridly/vue": "workspace:*",
"@innocenzi/eslint-config": "^0.22.3",
"@types/debug": "^4.1.12",
"@types/node": "^20.14.9",
"@types/qs": "^6.9.15",
"@types/throttle-debounce": "^5.0.2",
"@vitest/ui": "^1.6.0",
"axios": "^1.7.2",
"bumpp": "^9.4.1",
"eslint": "^9.6.0",
"happy-dom": "^14.12.3",
"hybridly": "workspace:*",
"msw": "^2.3.1",
"tailwindcss": "^3.4.4",
"tsx": "^4.15.8",
"type-fest": "^4.20.1",
"typescript": "^5.5.2",
"unbuild": "^2.0.0",
"unocss": "^0.61.0",
"vite": "^5.3.2",
"vitepress": "^1.2.3",
"vitest": "^1.6.0",
"vue": "^3.4.31"
},
"pnpm": {
"overrides": {
"@vitest/ui": "0.34.6",
"vitest": "0.34.6"
},
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"react",
"react-dom",
"@types/react"
]
}
}
}