-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "timer-db",
"version": "0.1.0-pre2",
"description": "A library for cubing timer results storage with CouchDB-based synchronization.",
"type": "module",
"main": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "node script/build.js && npm run build-types",
"build-types": "npx tsc --build tsconfig-types.json",
"dev": "node script/dev.js",
"clean": "rm -rf ./dist",
"prepack": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/cubing/timer-db"
},
"keywords": [
"cubing"
],
"author": "github.com/cubing",
"license": "GPL-3.0-or-later",
"dependencies": {
"@collectable/red-black-tree": "^5.1.1",
"events": "^3.3.0",
"pouchdb-find": "^7.3.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/pouchdb": "^6.4.0",
"barely-a-dev-server": "^0.7.1",
"esbuild": "^0.25.0",
"pouchdb": "^7.3.0",
"typescript": "^4.7.4"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
}
}