forked from shcnwc/shadcn-web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.43 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
{
"name": "@shcnwc/shadcn-web-components",
"version": "0.0.1",
"description": "Framework-agnostic web components built from shadcn-svelte, with TypeScript support and VS Code integration.",
"type": "module",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"bin": {
"shadcn-web-components": "./scripts/setup-vscode.js"
},
"scripts": {
"dev": "vite dev",
"build": "node scripts/generate-wrappers.js && node scripts/generate-readmes.js && node scripts/copy-types.js",
"setup": "node scripts/setup-vscode.js",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint ."
},
"keywords": [
"web-components",
"shadcn",
"svelte",
"ui-components",
"typescript",
"tailwindcss"
],
"author": "DT <thousandsorfaccoons@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shcnwc/shadcn-web-components.git"
},
"homepage": "https://github.com/shcnwc/shadcn-web-components#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false,
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@sveltejs/adapter-auto": "^6.1.0",
"@sveltejs/kit": "^2.22.0",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@tailwindcss/vite": "^4.0.0",
"eslint": "^9.18.0",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"semantic-release": "^24.0.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^2.1.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.20.0",
"vite": "^7.0.4"
},
"dependencies": {
"@lucide/svelte": "^0.539.0",
"@tanstack/table-core": "^8.21.3",
"bits-ui": "^2.9.3",
"embla-carousel-svelte": "^8.6.0",
"formsnap": "^2.0.1",
"layerchart": "2.0.0-next.27",
"mode-watcher": "^1.1.0",
"paneforge": "^1.0.2",
"svelte-sonner": "^1.0.5",
"vaul-svelte": "^0.3.2"
}
}