-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 1.79 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
71
72
73
74
75
76
77
78
79
{
"name": "@datastax/astra-db-ts",
"version": "1.5.0",
"description": "Astra DB TS Client",
"contributors": [
"Kavin Gupta (https://github.com/toptobes)",
"Valeri Karpov (https://github.com/vkarpov15)",
"Aaron Morton (https://github.com/amorton)",
"Kathiresan Selvaraj (https://github.com/kathirsvn)"
],
"keywords": [
"cassandra",
"dse",
"document",
"model",
"schema",
"database",
"data",
"datastore",
"query",
"nosql",
"orm",
"db",
"jsonapi"
],
"homepage": "https://github.com/datastax/astra-db-ts",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/astra-db-ts.d.ts",
"directories": {
"lib": "src",
"test": "tests"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datastax/astra-db-ts.git"
},
"scripts": {
"lint": "eslint src/* tests/*",
"test": "sh scripts/test.sh",
"build": "sh scripts/build.sh",
"version": "sh scripts/utils/version.sh"
},
"bugs": {
"url": "https://github.com/datastax/astra-ts-client/issues"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@microsoft/api-extractor": "^7.47.9",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.36",
"@types/object-hash": "^3.0.6",
"dotenv": "^16.0.1",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"nyc": "^15.1.0",
"strip-comments": "^2.0.1",
"ts-mocha": "^10.0.0",
"tsc-alias": "^1.8.8",
"typescript": "^5.6.2"
},
"dependencies": {
"fetch-h2": "^3.0.2",
"safe-stable-stringify": "^2.4.3",
"typed-emitter": "^2.1.0",
"typescript-eslint": "^8.7.0",
"uuidv7": "^0.6.3"
},
"engines": {
"node": ">=14.0.0"
}
}