-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.88 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.88 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
{
"name": "@gomboc-ai/cli",
"version": "1.0.6",
"description": "",
"type": "module",
"main": "bin/index.js",
"engines": {
"node": "v18.17.0",
"npm": ">=8.1.0"
},
"bin": {
"gomboc": "bin/index.js"
},
"scripts": {
"bootstrap": "npm i && npm run generate && npm run build",
"test": "exit 0",
"prebuild": "node -p \"'export const CLI_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/cli/version.ts",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"build": "tsc",
"gomboc-dev": "ts-node --esm src/index.ts",
"generate": "graphql-codegen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gomboc-AI/cli.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gomboc-AI/cli/issues"
},
"homepage": "https://github.com/Gomboc-AI/cli#readme",
"publishConfig": {
"@Gomboc-AI:registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@types/graphql": "^14.5.0",
"@types/node": "^18.16.16",
"@types/ramda": "^0.29.1",
"@types/react": "^18.2.0",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "3.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.4.4"
},
"dependencies": {
"@apollo/client": "^3.8",
"chalk": "^5.2.0",
"cross-fetch": "^3.1.5",
"glob": "^10.2.2",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"ramda": "^0.29.0",
"simple-git": "^3.19.0",
"yaml": "^2.2.2",
"yargs": "^17.7.2",
"zip-a-folder": "^1.1.5",
"zod": "^3.24.1"
}
}