-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.78 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
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
{
"name": "svelte-pieces",
"type": "module",
"version": "2.0.0-next.16",
"description": "Useful Svelte UI pieces for building web apps",
"author": "Jacob Bowdoin",
"license": "MIT",
"homepage": "https://svelte-pieces.vercel.app",
"repository": {
"type": "git",
"url": "git+https://github.com/jacob-8/svelte-pieces.git"
},
"bugs": {
"url": "https://github.com/jacob-8/svelte-pieces/issues"
},
"keywords": [
"Svelte",
"SvelteKit",
"Typescript",
"UI",
"Component library",
"Kitbook"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
},
"./*": "./dist/*"
},
"types": "./dist/index.d.ts",
"typesVersions": {
">4.0": {
"index": [
"./dist/index.d.ts"
],
"*": [
"./dist/*"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"sync": "svelte-kit sync",
"package": "svelte-kit sync && svelte-package && publint",
"package:watch": "svelte-kit sync && svelte-package --watch",
"prepublishOnly": "svelte-kit sync && vitest run && npm run package",
"check": "svelte-check --tsconfig ./tsconfig.json --threshold error --diagnostic-sources js,svelte --compiler-warnings a11y-no-static-element-interactions:ignore",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --threshold warning --diagnostic-sources js,svelte --watch",
"test": "vitest",
"lint": "eslint . --cache --quiet",
"lint:fix": "eslint . --cache --fix",
"lint:inspect": "eslint --inspect-config",
"check-packages": "pnpm update --interactive --recursive --latest",
"release": "bumpp"
},
"svelte": "./dist/index.js",
"peerDependencies": {
"svelte": "^3.55.0 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "2.13.3",
"@iconify/json": "^2.2.204",
"@sveltejs/adapter-auto": "3.2.0",
"@sveltejs/kit": "2.5.7",
"@sveltejs/package": "2.3.1",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@unocss/svelte-scoped": "^0.59.4",
"bumpp": "^9.4.0",
"eslint": "^9.1.1",
"eslint-plugin-svelte": "^2.38.0",
"eslint-plugin-svelte-stylistic": "^0.0.4",
"kitbook": "1.0.0-beta.30",
"lint-staged": "^15.2.2",
"publint": "^0.2.7",
"simple-git-hooks": "^2.11.1",
"svelte": "^4.2.15",
"svelte-check": "^3.7.0",
"svelte2tsx": "^0.7.7",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"unocss": "^0.59.4",
"vite": "^5.2.10",
"vitest": "^1.5.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}