-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.2 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.2 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@datastax/astra-db-ts",
"version": "2.2.1",
"description": "Data API TypeScript client",
"contributors": [
"Kavin Gupta (https://github.com/toptobes)",
"Valeri Karpov (https://github.com/vkarpov15)"
],
"keywords": [
"astra",
"cassandra",
"dse",
"document",
"model",
"schema",
"database",
"data",
"datastore",
"query",
"nosql",
"orm",
"db",
"dataapi"
],
"homepage": "https://github.com/datastax/astra-db-ts",
"license": "Apache-2.0",
"type": "module",
"main": "dist/cjs/index.js",
"exports": {
".": {
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./package.json": "./package.json"
},
"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": "scripts/test.ts",
"build": "scripts/build.ts",
"version": "sh scripts/utils/version.sh"
},
"bugs": {
"url": "https://github.com/datastax/astra-ts-client/issues"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@microsoft/api-extractor": "^7.56.2",
"@types/json-bigint": "^1.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^25.2.0",
"@types/strip-comments": "^2.0.4",
"c8": "^10.1.3",
"eslint": "^9.39.2",
"fetch-h2": "^3.0.2",
"globals": "^17.3.0",
"mocha": "^11.7.5",
"strip-comments": "^2.0.1",
"synchronized-promise": "^0.3.1",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"zx": "^8.8.5"
},
"dependencies": {
"bignumber.js": "^9.3.1",
"decoders": "^2.7.5",
"fast-check": "^4.5.3",
"json-bigint": "^1.0.0",
"safe-stable-stringify": "^2.5.0",
"tslib": "^2.8.1",
"uuid": "^11.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}