-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"name": "svelte5-fsm",
"version": "1.1.0",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest"
},
"homepage": "https://github.com/miunau/svelte5-fsm",
"repository": "github:miunau/svelte5-fsm",
"contributors": [
{
"name": "miunau",
"email": "miunau+npm@miunau.com",
"url": "https://miunau.com"
}
],
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"svelte": "^5.0.0-next.244"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.2.4",
"@sveltejs/kit": "^2.5.26",
"@sveltejs/package": "^2.3.4",
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.6",
"publint": "^0.2.10",
"svelte": "^5.0.0-next.244",
"svelte-check": "^4.0.1",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vitest": "^2.0.5"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module"
}