forked from mattjennings/svelte-modals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.27 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
{
"name": "svelte-modals",
"version": "1.3.0",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"package": "svelte-package",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. .",
"release": "npm run package && npm publish --access public",
"release:next": "npm run package && npm publish --access public --tag next"
},
"devDependencies": {
"@mattjennings/heroicons-svelte": "^0.0.6",
"@sveltejs/adapter-vercel": "3.0.1",
"@sveltejs/kit": "1.21.0",
"@sveltejs/package": "^2.1.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"autoprefixer": "^10.4.14",
"canvas-confetti": "^1.4.0",
"cssnano": "^5.0.15",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"fast-glob": "^3.2.11",
"mdsvex": "^0.11.0",
"mdsvexamples": "^0.3.3",
"postcss": "^8.4.24",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"rehype-autolink-headings": "^5.1.0",
"rehype-slug": "^4.0.1",
"remark-abbr": "^1.4.1",
"remark-github": "^10.1.0",
"svelte": "^4.0.1",
"svelte-check": "^3.4.4",
"svelte-preprocess": "^5.0.4",
"svelte2tsx": "^0.6.16",
"tailwindcss": "^3.0.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^4.3.9"
},
"peerDependencies": {
"svelte": "^3.0.0 || ^4.0.0"
},
"type": "module",
"keywords": [
"svelte",
"modal",
"stack",
"manager"
],
"homepage": "https://svelte-modals.mattjennings.io",
"repository": {
"type": "git",
"url": "https://github.com/mattjennings/svelte-modals.git"
},
"license": "MIT",
"author": {
"name": "Matt Jennings",
"url": "https://github.com/mattjennings"
}
}