-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.1 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 4.1 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@arkitect-ui/repo",
"version": "1.0.0",
"license": "MIT",
"description": "Arkitect UI set of components for SolidJs and React",
"scripts": {
"lint-staged": "lint-staged --allow-empty",
"clean": "rm -rf node_modules dist pnpm-lock.yaml && pnpm store prune & find . -type d \\( -name 'node_modules' -o -name 'dist' -o -name '.output' -o -name '.vinxi' -o -name '.cache' -o -name '.expo' -o -name '.nx' \\) -prune -exec rm -rf {} + & wait",
"prepare": "husky && ts-patch install -s",
"build:affected": "pnpm nx affected --target=build",
"test:affected": "pnpm nx affected --target=test",
"typecheck:affected": "pnpm nx affected --target=typecheck",
"lint": "pnpm exec oxlint && pnpm exec dprint check",
"lint:fix": "pnpm exec oxlint --fix && pnpm exec dprint fmt",
"lint:affected": "pnpm nx affected --target=lint",
"lint:many": "pnpm nx run-many --target=lint && pnpm exec dprint check",
"publish:affected": "pnpm nx publish-affected",
"release:affected": "pnpm nx release-affected",
"release:affected:dry-run": "pnpm nx release-affected-dry-run",
"registry:build": "mkdir -p apps/docs/public/r/r apps/docs/public/r/s && pnpm exec shadcn build --output apps/docs/public/r && node scripts/registry-fix-paths.js && cp registry.json apps/docs/public/r/index.json",
"dev": "nx run-many -t dev -p @arkitect-ui/react @arkitect-ui/solid @arkitect-ui/docs --parallel",
"dev:storybook:react": "nx serve:storybook @arkitect-ui/react",
"dev:storybook:solid": "nx serve:storybook @arkitect-ui/solid",
"dev:docs": "nx dev @arkitect-ui/docs",
"dev:storybooks": "nx run-many -t serve:storybook -p @arkitect-ui/react @arkitect-ui/solid",
"storybook:react": "nx serve:storybook @arkitect-ui/react",
"storybook:solid": "nx serve:storybook @arkitect-ui/solid"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"pnpm exec oxlint --fix",
"pnpm exec dprint fmt --allow-no-files"
]
},
"devDependencies": {
"@changesets/cli": "catalog:",
"@effect/language-service": "catalog:",
"@nx/js": "catalog:",
"@nx/node": "catalog:",
"@nx/react": "catalog:",
"@nx/storybook": "catalog:",
"@nx/vite": "catalog:",
"@nx/vitest": "22.5.4",
"@nx/web": "catalog:",
"@swc-node/register": "catalog:",
"@swc/core": "catalog:",
"@swc/helpers": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"@vitest/ui": "catalog:",
"dprint": "catalog:",
"husky": "catalog:",
"jiti": "catalog:",
"lint-staged": "catalog:",
"nx": "22.5.4",
"nx-oxlint": "catalog:",
"oxlint": "1.42.0",
"shadcn": "catalog:",
"ts-patch": "catalog:",
"tslib": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"nx": {
"targets": {
"dev:all": {
"executor": "nx:run-commands",
"dependsOn": [
{
"target": "build",
"projects": [
"@arkitect-ui/react",
"@arkitect-ui/solid"
]
}
],
"options": {
"commands": [
"nx dev @arkitect-ui/docs",
"nx serve:storybook @arkitect-ui/react",
"nx serve:storybook @arkitect-ui/solid"
],
"parallel": true
}
}
}
},
"pnpm": {
"packageExtensions": {
"starlight-sidebar-topics": {
"peerDependencies": {
"astro": "*"
}
},
"better-auth": {
"dependencies": {
"zod": "^4.3.6"
}
}
},
"overrides": {
"@types/react": "19.1.13",
"@types/react-dom": "19.1.9"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"@tailwindcss/oxide",
"better-sqlite3",
"core-js",
"esbuild",
"msgpackr-extract",
"msw",
"nx",
"sharp"
],
"ignoredBuiltDependencies": [
"bun"
]
},
"packageManager": "pnpm@10.29.3",
"dependencies": {
"vite-tsconfig-paths": "catalog:"
}
}