-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.62 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.62 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "mindoodb",
"version": "0.0.16",
"description": "End-to-End Encrypted, Offline-first Sync Database",
"main": "./dist/node/index.js",
"browser": "./dist/browser/index.mjs",
"react-native": "./dist/reactnative/index.js",
"types": "./dist/core/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/klehmann/mindoodb.git"
},
"keywords": [
"database",
"e2e-encryption",
"offline-first",
"sync",
"crdt",
"automerge",
"react-native",
"expo"
],
"exports": {
".": {
"types": "./dist/core/index.d.ts",
"react-native": "./dist/reactnative/index.js",
"browser": "./dist/browser/index.mjs",
"node": "./dist/node/index.js",
"default": "./dist/node/index.js"
},
"./core": "./dist/core/index.js",
"./browser": {
"types": "./dist/browser/index.d.ts",
"import": "./dist/browser/index.mjs",
"require": "./dist/browser/index.js",
"default": "./dist/browser/index.mjs"
},
"./node": "./dist/node/index.js",
"./reactnative": "./dist/reactnative/index.js"
},
"files": [
"dist",
"README.md",
"README-server.md",
"patches",
"scripts",
"templates"
],
"bin": {
"mindoodb": "./scripts/cli.js"
},
"scripts": {
"build": "tsc && node scripts/generate-browser-esm-wrapper.js",
"test": "jest",
"test:watch": "jest --watch",
"test:stress": "MINDOODB_STRESS_TESTS=1 jest --runInBand BasicOnDiskContentAddressedStore.stress",
"test:soak": "MINDOODB_STRESS_TESTS=1 MINDOODB_SOAK_TESTS=1 jest --runInBand BasicOnDiskContentAddressedStore.stress",
"test:browser:install": "playwright install chromium",
"test:browser": "npm run build && playwright test",
"test:browser:watch": "npm run build && playwright test --ui",
"test:all": "npm test && npm run test:browser",
"prepublishOnly": "npm run build && npm run test",
"identity:info": "node dist/node/cli/identity-info.js",
"identity:change-password": "node dist/node/cli/change-identity-password.js",
"identity:export-public": "node dist/node/cli/identity-export-public.js",
"server:start": "node dist/node/server/server.js",
"server:init": "node dist/node/server/serverinit.js",
"server:dev": "ts-node-dev --transpile-only src/node/server/server.ts",
"server:add-to-network": "ts-node-dev --transpile-only src/node/server/add-to-network.ts"
},
"author": "Mindoo GmbH",
"license": "ISC",
"dependencies": {
"@automerge/automerge": "^3.2.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"@types/node-forge": "^1.3.14",
"@types/uuid": "^10.0.0",
"cors": "^2.8.6",
"esbuild": "^0.27.3",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"fake-indexeddb": "^6.2.5",
"helmet": "^8.1.0",
"jest": "^29.7.0",
"node-forge": "^1.3.1",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"tweetnacl": "^1.0.3",
"typescript": "^5.6.0"
},
"peerDependencies": {
"expo-standard-web-crypto": "^3.0.0",
"node-forge": "^1.3.1",
"react-native-automerge-generated": "^0.1.0",
"react-native-quick-crypto": "^1.0.0",
"tweetnacl": "^1.0.3"
},
"peerDependenciesMeta": {
"react-native-automerge-generated": {
"optional": true
},
"react-native-quick-crypto": {
"optional": true
},
"expo-standard-web-crypto": {
"optional": true
},
"node-forge": {
"optional": true
},
"tweetnacl": {
"optional": true
}
}
}