-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.93 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@tragedy-labs/sprite",
"version": "0.1.5",
"description": "A TypeScript driver for ArcadeDB",
"homepage": "https://sprite.tragedy.dev",
"repository": {
"type": "git",
"url": "https://github.com/tragedy-labs/sprite.git"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"type": "module",
"scripts": {
"dev": "nodemon --watch ./ --ext ts --exec 'rimraf ./dist && tsc && node ./dist/index.js'",
"build": "rimraf ./dist && tsc -p ./tsconfig.build.json",
"docs:api": "typedoc ./src/api.ts --out ./docs/api --darkHighlightTheme dracula --lightHighlightTheme github-light",
"docs:json": "typedoc ./src/api.ts --json ./docs/_data/docs.json ",
"docs:site": "ts-node ./src/dev/*",
"test": "jest ./test --coverage",
"test:all": "jest ./test/ --coverage",
"test:unit": "jest ./test/unit/",
"test:integration": "jest ./test/integration/",
"lint": "pnpm eslint --fix ./test/ ./src",
"format": "pnpm prettier --write ./test/ ./src",
"exec": "pnpm build && node ./dist/index.js"
},
"keywords": [
"typescript",
"database",
"driver",
"arcadedb",
"orientdb",
"multi-modal",
"graph-database",
"graph",
"document-store",
"document-database",
"crud",
"client",
"sql",
"nosql",
"typescript-driver",
"arcadedb-driver",
"sprite",
"transaction",
"transactional",
"api",
"rest-api"
],
"author": "Austin Pittman",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"dotenv": "^16.4.5",
"eslint": "^9.8.0",
"eslint-plugin-tsdoc": "^0.3.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
}
}