-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.92 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
{
"name": "@rpf3/spek",
"version": "0.95.0",
"description": "An opinionated Svelte component library.",
"author": {
"name": "Richard P. Field III",
"url": "https://rpf3.io"
},
"repository": {
"url": "https://github.com/rpf3/spek"
},
"keywords": [
"svelte",
"tailwind",
"typescript"
],
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-package",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@playwright/test": "^1.43.1",
"@sveltejs/adapter-auto": "2.0.0",
"@sveltejs/kit": "1.15.2",
"@sveltejs/package": "2.0.2",
"@types/luxon": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"luxon": "^3.4.4",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"svelte": "^3.59.2",
"svelte-check": "^3.7.0",
"svelte-preprocess": "^5.1.4",
"svelte2tsx": "^0.6.27",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^4.5.3"
},
"type": "module",
"peerDependencies": {
"luxon": "^3.0",
"svelte": "^3.0",
"tailwindcss": "^3.0"
},
"types": "index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./tailwind/*": "./src/lib/tailwind/*"
},
"files": [
"./dist/**/*.svelte",
"./dist/**/*.js",
"./dist/**/*.d.ts",
"./src/lib/tailwind/*"
],
"svelte": "./dist/index.js",
"typesVersions": {
">4.0": {
"index": [
"./dist/index.d.ts"
]
}
}
}