-
-
Notifications
You must be signed in to change notification settings - Fork 335
/
package.json
59 lines (59 loc) · 1.66 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 docs build:registry",
"build:site": "pnpm -F docs build",
"dev": "pnpm build:registry && pnpm -F docs dev",
"dev:cli": "pnpm -F shadcn-svelte dev",
"preview": "pnpm -F docs preview",
"test": "pnpm -F docs test",
"check": "pnpm -F docs check",
"check:watch": "pnpm -F docs check:watch",
"test:unit": "pnpm -F docs test:unit",
"lint": "prettier --check . && eslint .",
"lint:fix": "eslint --fix .",
"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": ">=9",
"node": ">=18"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/huntabyte/shadcn-svelte.git"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@huntabyte/eslint-config": "^0.3.2",
"@huntabyte/eslint-plugin": "^0.1.0",
"eslint": "^9.0.0",
"eslint-plugin-svelte": "^2.37.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"prettier-plugin-tailwindcss": "0.5.13",
"pretty-quick": "^4.0.0",
"simple-git-hooks": "^2.10.0",
"svelte": "^4.2.12",
"svelte-eslint-parser": "^0.41.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm -r format:staged --staged"
}
}