-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.16 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.16 KB
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
{
"name": "sveltekit-webmcp-forms",
"version": "0.0.5",
"description": "Expose SvelteKit form actions as WebMCP tools with zero boilerplate",
"keywords": [
"actions",
"forms",
"mcp",
"svelte",
"sveltekit",
"webmcp"
],
"license": "MIT",
"author": "Thomas Aubry",
"repository": {
"type": "git",
"url": "https://github.com/ThomAub/sveltekit-webmcp-forms.git"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"!dist/__mocks__"
],
"type": "module",
"sideEffects": [
"**/*.css"
],
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run prepack",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"prepack": "svelte-kit sync && svelte-package && publint",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"test": "npm run test:unit -- --run",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt --write 'src/**/*.{ts,js}' '*.{ts,js,json}' && prettier --write 'src/**/*.svelte'",
"fmt:check": "oxfmt --check 'src/**/*.{ts,js}' '*.{ts,js,json}' && prettier --check 'src/**/*.svelte'"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.50.2",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/node": "^25.2.3",
"@vitest/browser-playwright": "^4.0.18",
"oxfmt": "^0.33.0",
"oxlint": "^1.48.0",
"playwright": "^1.58.1",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"publint": "^0.3.17",
"svelte": "^5.49.2",
"svelte-check": "^4.3.6",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"vitest-browser-svelte": "^2.0.2"
},
"peerDependencies": {
"@sveltejs/kit": "^2.0.0",
"svelte": "^5.0.0"
}
}