forked from QwikDev/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 847 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 847 Bytes
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
{
"name": "@devtools/kit",
"description": "Qwik devtools package",
"main": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts"
}
},
"files": [
"src"
],
"types": "./dist/index.d.ts",
"private": true,
"type": "module",
"scripts": {
"build": "tsdown "
},
"dependencies": {
"birpc": "^4.0.0",
"dree": "^5.1.5",
"superjson": "^2.2.6"
},
"peerDependencies": {
"vite": ">=7.0.0 <9.0.0"
},
"devDependencies": {
"@types/eslint": "9.6.1",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.57.1",
"@typescript-eslint/parser": "8.57.1",
"cpy-cli": "^7.0.0",
"eslint": "10.0.3",
"eslint-plugin-qwik": "2.0.0-beta.29",
"np": "^11.0.2",
"prettier": "3.6.2",
"typescript": "5.9.3",
"vite-tsconfig-paths": "^6.1.1"
}
}