-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.26 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.26 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
{
"name": "convex-dev-panel",
"version": "0.0.1",
"description": "Route-scoped local dev panel for Convex apps",
"license": "MIT",
"type": "module",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
},
"./convex.config.js": "./dist/component/convex.config.js",
"./_generated/component.js": "./dist/component/_generated/component.js",
"./test": {
"types": "./dist/test.d.ts",
"default": "./dist/test.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dayhaysoos/convex-data-admin.git"
},
"bugs": {
"url": "https://github.com/dayhaysoos/convex-data-admin/issues"
},
"homepage": "https://github.com/dayhaysoos/convex-data-admin#readme",
"scripts": {
"app:dev": "VITE_DEV_PANEL_ENABLED=1 vite --config example/vite.config.ts",
"build": "tsc -p tsconfig.json",
"prepack": "npm run build",
"convex:dev": "convex dev --typecheck-components",
"convex:enable-dev-panel": "convex env set CONVEX_DEV_PANEL_ENABLED 1",
"dev": "tsc -p tsconfig.json --watch",
"example:dev": "npm run convex:enable-dev-panel && VITE_DEV_PANEL_ENABLED=1 convex dev --typecheck-components --run-sh \"vite --config example/vite.config.ts\"",
"example:build": "vite build --config example/vite.config.ts",
"test": "vitest",
"test:live": "npm run convex:enable-dev-panel && convex dev --once --typecheck-components && RUN_LIVE_TESTS=1 vitest run --project node tests/live/devPanel.live.integration.test.ts",
"test:run": "vitest run",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"peerDependencies": {
"convex": "^1.20.0",
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.4.1",
"@types/node": "^22.13.11",
"@types/react": "^19.0.10",
"convex": "^1.20.0",
"convex-test": "^0.0.29",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@edge-runtime/vm": "^5.0.0",
"vite": "^6.2.2",
"vitest": "^3.0.8",
"typescript": "^5.7.3"
}
}