forked from ccorcos/tuple-database
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@triplit/tuple-database",
"version": "2.2.25",
"description": "An optimized fork of ccorcos/tuple-database",
"repository": "github:aspen-cloud/tuple-database",
"main": "./main.js",
"scripts": {
"build": "run-s build:macros build:tsc",
"build:tsc": "tsc",
"build:macros": "bun src/tools/compileMacros.ts",
"watch": "tsc -w",
"test": "bun test",
"test:clean": "rm -rf tmp",
"test:watch": "npm test -- --watch --watch-extensions ts",
"typecheck": "tsc --project tsconfig.json --noEmit",
"prettier": "prettier -w src",
"release": "./release.sh",
"pack": "./pack.sh"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.3",
"@types/bun": "^1.0.12",
"@types/fs-extra": "^11.0.1",
"@types/level": "^6.0.1",
"@types/lodash": "^4.14.191",
"@types/mocha": "whitecolor/mocha-types",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"better-sqlite3": "^9.5.0",
"expo-sqlite": "^14.0.3",
"fake-indexeddb": "^4.0.1",
"idb": "^7.1.1",
"level": "^8.0.0",
"lmdb": "^3.0.11",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"organize-imports-cli": "^0.10.0",
"prettier": "^2.8.2",
"react": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": "*"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"dependencies": {
"elen": "^1.0.10",
"fractional-indexing": "^3.1.0",
"fs-extra": "^11.1.0",
"md5": "^2.3.0",
"remeda": "^1.37.0",
"sorted-btree": "^1.8.1",
"uuid": "^9.0.0"
},
"license": "MIT"
}