-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "@xnetjs/devtools",
"version": "0.1.0",
"description": "Protocol-level devtools for xNet applications",
"type": "module",
"sideEffects": false,
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"development": "./src/index.dev.ts",
"import": "./src/index.dev.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"build": "tsup src/index.ts src/index.dev.ts --format esm --dts --external react --external react-dom --external yjs --external @xnetjs/data --external @xnetjs/sync --external @xnetjs/react --external @xnetjs/ui",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"yjs": ">=13.0.0",
"@xnetjs/data": "workspace:*",
"@xnetjs/sync": "workspace:*",
"@xnetjs/react": "workspace:*"
},
"dependencies": {
"@xnetjs/history": "workspace:*",
"@xnetjs/sqlite": "workspace:*",
"@xnetjs/ui": "workspace:*",
"@xnetjs/views": "workspace:*"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^4.0.0",
"yjs": "^13.6.24"
},
"private": true
}