-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.01 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
{
"name": "@heroku/plugin-ai",
"description": "Heroku CLI plugin for Heroku AI add-on",
"version": "0.0.9",
"author": "Heroku",
"bugs": "https://github.com/heroku/heroku-cli-plugin-ai/issues",
"dependencies": {
"@heroku-cli/color": "^2",
"@heroku-cli/command": "^11.4.0",
"@heroku-cli/schema": "^1.0.25",
"@oclif/core": "^2.16.0",
"@oclif/plugin-help": "^5",
"open": "^8.4.2",
"printf": "^0.6.1",
"tsheredoc": "^1"
},
"devDependencies": {
"@heroku/http-call": "^5.4.0",
"@oclif/test": "^2.3.28",
"@types/mocha": "^10",
"@types/nock": "^11",
"@types/node": "^22",
"@types/sinon": "^17",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"chai": "^4",
"eslint": "^7",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1",
"eslint-import-resolver-typescript": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-mocha": "^10",
"mocha": "^10",
"nock": "^13",
"np": "7.7.0",
"nyc": "^15",
"oclif": "2.2.0",
"sinon": "^19",
"stdout-stderr": "^0",
"strip-ansi": "^6",
"ts-node": "^10",
"typescript": "^5"
},
"engines": {
"node": ">=16.20.2"
},
"files": [
"/dist"
],
"homepage": "https://github.com/heroku/heroku-cli-plugin-ai",
"keywords": [
"heroku-plugin",
"oclif"
],
"license": "ISC",
"oclif": {
"bin": "heroku",
"commands": "./dist/commands",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"ai": {
"description": "manage Heroku AI models"
}
}
},
"repository": "heroku/heroku-cli-plugin-ai",
"scripts": {
"build": "rm -rf dist && tsc -b && oclif manifest && oclif readme && mv oclif.manifest.json ./dist/oclif.manifest.json && cp README.md ./dist/README.md",
"lint": "eslint . --ext .ts --config .eslintrc.json",
"posttest": "yarn lint",
"test": "nyc mocha --forbid-only",
"test:local": "nyc mocha",
"version": "oclif readme && git add README.md"
}
}