-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
{
"name": "svoast",
"version": "3.0.3",
"scripts": {
"dev": "vite dev",
"build:site": "vite build",
"package": "svelte-kit sync && svelte-package -o package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
"push": "npm run package && npm publish"
},
"keywords": [
"toast",
"svelte",
"svelte-component"
],
"exports": {
".": {
"types": "./package/index.d.ts",
"svelte": "./package/index.js"
}
},
"files": [
"package",
"!package/**/*.test.*",
"!package/**/*.spec.*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Gibbu/svoast.git"
},
"bugs": {
"url": "https://github.com/Gibbu/svoast/issues"
},
"homepage": "https://svoast.vercel.app",
"devDependencies": {
"@sveltejs/adapter-vercel": "^5.4.7",
"@sveltejs/kit": "^2.8.1",
"@sveltejs/package": "^2.3.7",
"@sveltejs/vite-plugin-svelte": "^4.0.1",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"fenceparser": "^2.2.0",
"mdsvex": "^0.12.3",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.8",
"rehype-slug": "^6.0.0",
"remark-code-extra": "^1.0.1",
"remark-external-links": "9.0.1",
"shiki": "^1.23.1",
"shiki-twoslash": "^3.1.2",
"svelte": "^5.2.3",
"svelte-check": "^4.0.9",
"tailwindcss": "^3.4.15",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vite": "^5.4.11"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"type": "module"
}