-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.46 KB
/
package.json
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
100
101
102
103
104
{
"name": "ai-db-agent",
"type": "module",
"version": "0.0.0",
"description": "An ai database agent",
"author": "tangge",
"license": "MIT",
"homepage": "https://github.com/code/ai-db-agent",
"repository": "code/ai-db-agent",
"bugs": "https://github.com/code/ai-db-agent/issues",
"keywords": [
"oclif"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ada": "./bin/run.js"
},
"files": [
"./bin",
"./dist",
"./oclif.manifest.json"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "pnpm run lint",
"prepack": "oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"cz": "git add. && cz"
},
"dependencies": {
"@inquirer/prompts": "^7.3.2",
"@inquirer/select": "^4.0.9",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^5",
"@salesforce/core": "^8.8.3"
},
"devDependencies": {
"@antfu/eslint-config": "^4.3.0",
"@eslint/compat": "^1",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^18",
"chai": "^4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9",
"eslint-config-oclif": "^6",
"eslint-config-prettier": "^10",
"eslint-plugin-format": "^1.0.1",
"lint-staged": "^15.4.3",
"mocha": "^10",
"oclif": "^4",
"shx": "^0.3.3",
"simple-git-hooks": "^2.11.1",
"ts-node": "^10",
"typescript": "^5"
},
"oclif": {
"flexibleTaxonomy": true,
"bin": "ada",
"dirname": "ada",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"hooks": {
"command_incomplete": "./dist/hooks/incomplete"
},
"topicSeparator": " ",
"topics": {
"database": {
"description": "Say hello to the world and others"
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"pnpm": {
"onlyBuiltDependencies": [
"simple-git-hooks"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
},
"lint-staged": {
"*": "eslint --fix"
}
}