-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 945 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 945 Bytes
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
{
"name": "cassandra-codegen",
"version": "0.0.11",
"description": "Generate type definitions from a Cassandra database",
"author": "ramikg",
"license": "MIT",
"keywords": [
"cassandra",
"scylladb",
"cql"
],
"files": [
"src/",
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ramikg/cassandra-codegen.git"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"test:types": "tstyche"
},
"bin": {
"cassandra-codegen": "./dist/cli.js"
},
"dependencies": {
"cassandra-driver": "^4.7.2",
"commander": "^12.1.0",
"lodash": "^4.17.21",
"ts-morph": "^23.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^22.4.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tstyche": "^2.1.1",
"typescript": "^5.5.4"
}
}