-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "dotbase",
"version": "0.2.0",
"description": "In-memory representation of a fully featured graph database with label taxonomy",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist/**"
],
"bin": {
"dotbase": "ts-node ./bin/cli.ts"
},
"scripts": {
"up": "pnpm up -L",
"build": "tsup --treeshake",
"ci:publish": "pnpm publish --no-git-checks",
"clean": "rm -rf node_modules && rm -rf dist",
"dev": "tsup --watch",
"lint": "TIMING=1 eslint src --fix",
"prepublish": "pnpm test && pnpm build",
"test": "jest",
"bump": "pnpm changeset && pnpm changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeledge/dotbase.git"
},
"keywords": [],
"author": "ogroppo",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@changesets/cli": "^2.26.2",
"@jest/globals": "^29.6.4",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"jest": "^29.6.4",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/relaxed-json": "^1.0.4",
"decimal.js": "^10.4.3",
"deverything": "^1.13.0",
"relaxed-json": "^1.0.3"
},
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf"
}