-
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.54 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.54 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@tanstack/devtools-a11y",
"version": "0.1.1",
"description": "Accessibility auditing plugin for TanStack Devtools powered by axe-core",
"author": "TanStack",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/devtools.git",
"directory": "packages/devtools-a11y"
},
"homepage": "https://tanstack.com/devtools",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"devtools",
"accessibility",
"a11y",
"wcag",
"axe-core",
"audit"
],
"type": "module",
"exports": {
"./core": {
"import": {
"types": "./dist/esm/core/index.d.ts",
"default": "./dist/esm/core/index.js"
}
},
"./core/production": {
"import": {
"types": "./dist/esm/core/production.d.ts",
"default": "./dist/esm/core/production.js"
}
},
"./react": {
"import": {
"types": "./dist/esm/react/index.d.ts",
"default": "./dist/esm/react/index.js"
}
},
"./react/production": {
"import": {
"types": "./dist/esm/react/production.d.ts",
"default": "./dist/esm/react/production.js"
}
},
"./solid": {
"import": {
"types": "./dist/esm/solid/index.d.ts",
"default": "./dist/esm/solid/index.js"
}
},
"./solid/production": {
"import": {
"types": "./dist/esm/solid/production.d.ts",
"default": "./dist/esm/solid/production.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:lib": "vitest",
"test:lib:dev": "pnpm test:lib --watch",
"test:types": "tsc",
"test:build": "publint --strict",
"build": "vite build"
},
"dependencies": {
"@tanstack/devtools-ui": "workspace:*",
"@tanstack/devtools-utils": "workspace:^",
"axe-core": "^4.10.0",
"goober": "^2.1.16"
},
"devDependencies": {
"vite-plugin-solid": "^2.11.8"
},
"peerDependencies": {
"@types/react": ">=17.0.0",
"preact": ">=10.0.0",
"react": ">=17.0.0",
"solid-js": ">=1.9.7",
"vue": ">=3.2.0"
},
"peerDependenciesMeta": {
"preact": {
"optional": true
},
"react": {
"optional": true
},
"solid-js": {
"optional": true
},
"vue": {
"optional": true
}
}
}