-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.41 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
{
"name": "delta-components",
"version": "0.0.1",
"private": true,
"license": "MIT",
"type": "module",
"description": "Custom shadcn registry with production-ready React components for modern web applications",
"keywords": [
"shadcn",
"shadcn-ui",
"shadcn-registry",
"react",
"components",
"tailwind",
"typescript",
"ui",
"nextjs"
],
"author": {
"name": "Patrick Prunty",
"url": "https://x.com/pprunty_"
},
"repository": {
"type": "git",
"url": "https://github.com/pprunty/deltacomponents.dev"
},
"homepage": "https://deltacomponents.dev",
"workspaces": [
"apps/*",
"packages/*",
"!**/test/**",
"!**/fixtures/**",
"!**/temp/**",
"!packages/tests/temp/**"
],
"scripts": {
"build": "turbo run build && start-server-and-test \"bun --filter=www start\" http://localhost:4001 \"bun --filter=www registry:capture\"",
"build:registry": "bun --filter=www build:registry && bun lint:fix && bun format:write -- --loglevel silent",
"registry:build": "bun --filter=www registry:build && bun format:write -- --loglevel silent",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check",
"check": "turbo lint typecheck format:check",
"release": "changeset version",
"test:dev": "turbo run test --force",
"test": "start-server-and-test dev http://localhost:4000 test:dev",
"validate:registries": "bun validate:registries",
"gacp": "git add . && git commit -m \"quick update\" --no-verify && git push --no-verify"
},
"packageManager": "bun@1.2.2",
"dependencies": {
"@babel/core": "^7.29.7",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@typescript-eslint/parser": "^8.61.0",
"autoprefixer": "^10.5.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.9",
"eslint-config-prettier": "^8.10.2",
"eslint-config-turbo": "^1.13.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-tailwindcss": "3.13.1",
"motion": "^12.40.0",
"postcss": "^8.5.15",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"puppeteer": "^23.11.1",
"tailwindcss": "3.4.6",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.22.4",
"turbo": "^2.9.17",
"vite": "^7.3.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^4.1.8"
},
"devDependencies": {
"@types/hast": "^3.0.4",
"@types/node": "^20.19.42",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"baseline-browser-mapping": "^2.10.35",
"lint-staged": "^16.4.0",
"start-server-and-test": "^2.1.5",
"typescript": "^5.9.3"
},
"overrides": {
"next": "16.2.9",
"vite": "7.3.5",
"shell-quote": "1.8.4",
"basic-ftp": "6.0.1",
"@isaacs/brace-expansion": "5.0.1",
"@modelcontextprotocol/sdk": "1.29.0",
"cross-spawn": "7.0.6",
"fast-uri": "3.1.2",
"flatted": "3.4.2",
"lodash": "4.18.1",
"lodash-es": "4.18.1",
"path-to-regexp": "8.4.2",
"rollup": "4.61.1",
"tar": "7.5.16",
"tar-fs": "3.1.2",
"tmp": "0.2.7",
"axios": "1.17.0",
"picomatch": "4.0.4",
"minimatch": "10.2.5",
"glob": "11.1.0"
}
}