timer-db
Version:
A library for cubing timer results storage with CouchDB-based synchronization.
44 lines (43 loc) • 1.12 kB
JSON
{
"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.2.6",
"esbuild": "^0.14.45",
"pouchdb": "^7.3.0",
"typescript": "^4.7.4"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
}
}