-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.54 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
{
"name": "@steeze-ui/components",
"version": "1.2.0",
"type": "module",
"main": "./index.js",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-package",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"publish:npm": "pnpm package && cd package && pnpm publish --no-git-checks",
"release:patch": "pnpm version patch --force && pnpm publish:npm",
"release:minor": "pnpm version minor --force && pnpm publish:npm",
"release:major": "pnpm version major --force && pnpm publish:npm",
"release": "pnpm release:patch",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage"
},
"dependencies": {
"@floating-ui/dom": "^1.0.2",
"@steeze-ui/heroicons": "^2.1.0",
"@steeze-ui/svelte-icon": "^1.3.2",
"focus-svelte": "^0.3.4"
},
"devDependencies": {
"@steeze-ui/radix-icons": "^1.1.0",
"@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-static": "next",
"@sveltejs/kit": "next",
"@sveltejs/package": "^1.0.0-next.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.1",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"jsdom": "^19.0.0",
"mdsvex": "^0.10.6",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"prismjs": "^1.29.0",
"svelte": "^3.50.1",
"svelte-check": "^2.9.0",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.16",
"tslib": "^2.4.0",
"typescript": "^4.8.2",
"vite": "^3.1.0",
"vite-plugin-windicss": "^1.8.7",
"vitest": "^0.1.27",
"windicss": "^3.5.6"
},
"peerDependencies": {
"svelte": ">= ^3.46.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steeze-ui/components.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"svelte",
"components",
"library",
"component library",
"design system",
"steeze",
"dark mode",
"select",
"popover",
"tooltip",
"toggle",
"button"
],
"author": "Justin Voitel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/steeze-ui/components/issues"
},
"homepage": "https://steeze-ui.com"
}