-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "@general-dexterity/cube-records-codegen",
"version": "0.9.1",
"description": "CLI tool for generating Cube Record type definitions from a CubeJS server",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"bin": {
"cube-records-codegen": "dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"dev:cli": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"cubejs",
"react",
"typescript",
"cli"
],
"author": "Aliou Diallo <code@general-dexterity.com>",
"license": "MIT",
"dependencies": {
"commander": "^14.0.0",
"typescript": "^5.8.3"
},
"devDependencies": {
"@cubejs-client/core": "^1.3.34",
"@cubejs-client/react": "^1.3.34",
"@types/node": "^22.0.0",
"tsup": "^8.5.0",
"vitest": "latest"
},
"peerDependencies": {
"@cubejs-client/core": "^1.3.34",
"@cubejs-client/react": "^1.3.34"
}
}