forked from huntabyte/shadcn-svelte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.68 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
{
"name": "shadcn-svelte",
"version": "0.0.1",
"description": "monorepo for shadcn-svelte",
"author": {
"name": "huntabyte",
"url": "https://twitter.com/huntabyte"
},
"private": true,
"scripts": {
"build": "pnpm build:registry && pnpm build:site",
"build:cli": "pnpm -F shadcn-svelte build",
"build:registry": "pnpm -F www build:registry",
"build:site": "pnpm -F www build",
"dev": "pnpm build:registry && pnpm -F www dev",
"dev:cli": "pnpm -F shadcn-svelte start:dev",
"preview": "pnpm -F www preview",
"test": "pnpm -F www test",
"check": "pnpm -F www check",
"check:watch": "pnpm -F www check:watch",
"test:unit": "pnpm -F www test:unit",
"lint": "prettier --check . && eslint .",
"format:check": "pnpm -r format:check",
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm -r sync",
"ci:publish": "changeset publish",
"ci:build": "pnpm build:cli",
"ci:release": "pnpm ci:build && pnpm ci:publish"
},
"engines": {
"pnpm": ">=8",
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/huntabyte/shadcn-svelte.git"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@antfu/eslint-config": "^2.11.6",
"@changesets/cli": "^2.27.1",
"@huntabyte/eslint-config": "^0.0.1",
"eslint": "^8.57.0",
"eslint-plugin-antfu": "^2.1.2",
"eslint-plugin-svelte": "2.36.0-next.13",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.12",
"pretty-quick": "^4.0.0",
"simple-git-hooks": "^2.10.0",
"svelte": "^4.2.12",
"svelte-eslint-parser": "^0.33.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm -r format:staged --staged"
}
}