-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 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": "timer-db",
"version": "0.1.0-pre2",
"description": "A library for cubing timer results storage with CouchDB-based synchronization.",
"author": "github.com/cubing",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/cubing/timer-db.git"
},
"type": "module",
"main": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js"
}
},
"dependencies": {
"@collectable/red-black-tree": "^5.1.1",
"events": "^3.3.0",
"pouchdb-find": "^9.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@cubing/dev-config": "^0.9.5",
"@types/bun": "^1.3.14",
"@types/node": "^25.6.0",
"@types/pouchdb": "^6.4.2",
"@typescript/native-preview": "^7.0.0-dev.20260512.1",
"barely-a-dev-server": "^0.8.3",
"bun-dx": "^0.1.4",
"esbuild": "^0.28.0",
"pouchdb": "^9.0.0"
},
"files": [
"./dist/",
"./src"
],
"scripts": {
"prepublishOnly": "make prepublishOnly"
},
"keywords": [
"cubing"
]
}