-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.72 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.72 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
{
"name": "@tanstack/devtools-seo",
"version": "0.1.0",
"description": "SEO overview panel for TanStack Devtools",
"author": "TanStack",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/devtools.git",
"directory": "packages/devtools-seo"
},
"homepage": "https://tanstack.com/devtools",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"devtools",
"seo",
"solid-js"
],
"type": "module",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./react": {
"import": {
"types": "./dist/esm/react/index.d.ts",
"default": "./dist/esm/react/index.js"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"dist/",
"src"
],
"scripts": {
"clean": "premove ./build ./dist",
"lint:fix": "eslint ./src --fix",
"test:eslint": "eslint ./src",
"test:types": "tsc",
"test:build": "publint --strict",
"build": "vite build"
},
"dependencies": {
"@tanstack/devtools-ui": "workspace:*",
"@tanstack/devtools-utils": "workspace:*",
"goober": "^2.1.16",
"solid-js": "^1.9.9"
},
"peerDependencies": {
"react": ">=16.8",
"solid-js": ">=1.9.7"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@tanstack/vite-config": "0.4.3",
"@types/react": "^19.2.0",
"react": "^19.2.0",
"vite": "^8.0.0",
"vite-plugin-solid": "^2.11.11"
}
}