-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "flight-devtools",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Security-boundary DevTools for React Flight / RSC payloads.",
"license": "MIT",
"author": "Evgeny Balyakin",
"repository": {
"type": "git",
"url": "https://github.com/balyakin"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"dev:extension": "npm --workspace @flight-devtools/extension run dev"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/node": "^22.15.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.4.0",
"fast-check": "^3.23.2",
"typescript": "^5.8.3",
"vite": "^6.3.3",
"vitest": "^3.1.2"
},
"dependencies": {
"@tanstack/react-virtual": "^3.13.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}