-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.19 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
{
"name": "@gomboc-ai/cli",
"version": "2.0.0",
"description": "",
"main": "bin/bundle.cjs",
"type": "module",
"engines": {
"node": "v22.15.1",
"npm": ">=8.1.0"
},
"bin": {
"gomboc": "bin/bundle.cjs"
},
"scripts": {
"bootstrap": "npm i && npm run generate && npm run build",
"test": "jest --runInBand --verbose --config ./jest.config.ts",
"test:coverage": "jest --coverage --runInBand --config ./jest.config.ts",
"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": "webpack",
"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": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@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/jest": "^30.0.0",
"@types/node": "^18.16.16",
"@types/react": "^18.2.0",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"babel-jest": "^30.0.2",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^30.0.3",
"prettier": "3.2.5",
"ts-jest": "^29.4.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.1",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"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",
"yaml": "^2.2.2",
"yargs": "^17.7.2",
"zod": "^3.24.1"
}
}