-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "graphbase",
"version": "0.0.0",
"description": "Graph base",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist/**"
],
"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/graphbase.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": {
"decimal.js": "^10.4.3",
"deverything": "^0.27.1"
}
}