forked from vlcn-io/js
-
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) · 977 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 977 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": "@vlcn.io/react",
"type": "module",
"version": "3.1.0",
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"module": "dist/index.js",
"sideEffects": false,
"devDependencies": {
"@types/react": "^18.0.37",
"react": "^18.2.0",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"scripts": {
"build": "tsc --build",
"watch": "tsc --build --watch",
"deep-clean": "rm -rf ./dist || true && rm tsconfig.tsbuildinfo || true",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git@github.com:vlcn-io/js.git",
"directory": "https://github.com/vlcn-io/js/tree/main/js/react"
},
"dependencies": {
"@vlcn.io/crsqlite-wasm": "workspace:*",
"@vlcn.io/rx-tbl": "workspace:*",
"@vlcn.io/ws-client": "workspace:*",
"@vlcn.io/xplat-api": "workspace:*",
"@vlcn.io/typed-sql": "workspace:*",
"async-mutex": "^0.4.0"
},
"peerDependencies": {
"react": "^18"
}
}