-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.55 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
{
"name": "@netlify/vite-plugin-tanstack-start",
"version": "1.3.16",
"description": "Vite plugin for TanStack Start on Netlify",
"type": "module",
"engines": {
"node": "^22.12.0 || >=24.0.0"
},
"main": "./dist/main.js",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsup-node",
"prepack": "npm run build",
"test": "vitest run",
"test:dev": "vitest",
"test:ci": "vitest run",
"dev": "tsup-node --watch",
"publint": "npx -y publint --strict"
},
"keywords": [
"netlify",
"tanstack",
"tanstack-start",
"vite-plugin",
"dev",
"build"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/netlify/framework-adapters.git",
"directory": "packages/vite-plugin-tanstack-start"
},
"bugs": {
"url": "https://github.com/netlify/framework-adapters/issues"
},
"author": "Netlify Inc.",
"devDependencies": {
"@netlify/dev-utils": "^4.4.6",
"@types/node": "^22.18.5",
"normalize-package-data": "^8.0.0",
"playwright": "^1.61.0",
"semver": "^7.8.4",
"tsup": "^8.5.1",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"dependencies": {
"@netlify/vite-plugin": "2.12.8"
},
"peerDependencies": {
"@tanstack/react-start": ">=1.132.0",
"@tanstack/solid-start": ">=1.132.0",
"vite": ">=7.0.0"
},
"peerDependenciesMeta": {
"@tanstack/react-start": {
"optional": true
},
"@tanstack/solid-start": {
"optional": true
}
}
}