-
Notifications
You must be signed in to change notification settings - Fork 222
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 KB
/
package.json
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": "@instantdb/react-native",
"version": "v0.17.12",
"description": "Instant DB for React Native",
"main": "dist/index.js",
"module": "dist/module/index.js",
"types": "dist/module/index.d.ts",
"unpkg": "dist/index.js",
"scripts": {
"test": "vitest",
"build": "rm -rf dist; npm run build:main && npm run build:module",
"dev:main": "tsc -p tsconfig.json -w --skipLibCheck",
"dev:module": "tsc -p tsconfig.module.json -w --skipLibCheck",
"dev": "run-p dev:main dev:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"publish-package": "npm publish --access public"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@types/node": "^22.6.1",
"@types/react": ">=16",
"npm-run-all": "^4.1.5",
"typescript": "^5.5.4",
"vitest": "^0.21.0"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.15",
"@react-native-community/netinfo": ">=7.1",
"react": ">=16",
"react-native": ">=0.56",
"react-native-get-random-values": ">=1.5"
},
"dependencies": {
"@instantdb/core": "workspace:*",
"@instantdb/react": "workspace:*"
}
}