forked from N00nDay/stwui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.37 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
{
"name": "stwui",
"description": "Opinionated yet customizable Svelte-TailwindCSS component library",
"keywords": [
"svelte",
"svelte3",
"sveltekit",
"svelte-components",
"sveltejs",
"tailwindcss",
"stwui"
],
"license": "MIT",
"version": "0.0.32-next",
"repository": {
"type": "git",
"url": "https://github.com/N00nDay/stwui"
},
"homepage": "https://github.com/N00nDay/stwui",
"scripts": {
"dev": "vite dev --open --host",
"build": "vite build",
"package": "svelte-package",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"publish": "npm publish ./package",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-vercel": "next",
"@sveltejs/kit": "next",
"@sveltejs/package": "1.0.0-next.5",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/dom": "^8.19.0",
"@testing-library/svelte": "^3.2.2",
"@types/cookie": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitest/coverage-c8": "^0.24.5",
"autoprefixer": "^10.4.13",
"c8": "^7.12.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"highlight.js": "^11.6.0",
"husky": "^8.0.1",
"jsdom": "^20.0.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.8.0",
"svelte": "^3.52.0",
"svelte-check": "^2.9.2",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.20",
"tailwindcss": "^3.2.2",
"tslib": "^2.4.1",
"typescript": "^4.8.4",
"vite": "^3.2.2",
"vitest": "^0.24.5"
},
"svelte": "./index.js",
"type": "module",
"types": "index.d.ts",
"dependencies": {
"dayjs": "^1.11.6",
"tailwind-merge": "^1.7.0",
"tippy.js": "^6.3.7"
},
"peerDependencies": {
"svelte": "^3.52.0"
},
"exports": {
".": "./index.js",
"./actions": "./actions/index.js",
"./plugin": "./plugin/index.js",
"./types": "./types/index.js",
"./utils": "./utils/index.js",
"./icons": "./icons.js"
}
}