-
-
Notifications
You must be signed in to change notification settings - Fork 663
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.45 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
{
"name": "@tanstack/svelte-form",
"version": "1.33.0",
"description": "Powerful, type-safe forms for Svelte.",
"author": "tannerlinsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/form.git",
"directory": "packages/svelte-form"
},
"homepage": "https://tanstack.com/form",
"keywords": [
"svelte"
],
"scripts": {
"clean": "premove ./dist ./coverage",
"test:eslint": "eslint ./src ./tests",
"test:types": "svelte-check",
"test:lib": "vitest",
"test:lib:dev": "pnpm run test:lib --watch",
"test:build": "publint --strict",
"build": "svelte-package --input ./src --output ./dist"
},
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"svelte": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"dependencies": {
"@tanstack/form-core": "workspace:*",
"@tanstack/svelte-store": "^0.12.0"
},
"devDependencies": {
"@sveltejs/package": "^2.5.3",
"@sveltejs/vite-plugin-svelte": "^5.1.1",
"@testing-library/svelte": "^5.2.8",
"svelte": "^5.39.4",
"svelte-check": "^4.3.1"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"bugs": {
"url": "https://github.com/TanStack/form/issues"
}
}