-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.91 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
{
"name": "@heroku/plugin-ai",
"description": "Heroku CLI plugin for Heroku AI add-on",
"version": "2.0.3",
"type": "module",
"author": "Heroku",
"bugs": "https://github.com/heroku/heroku-cli-plugin-ai/issues",
"dependencies": {
"@heroku-cli/command": "^13.0.0",
"@heroku-cli/schema": "^1.0.25",
"@heroku/heroku-cli-util": "^10.9.0",
"@heroku/http-call": "^5.5.0",
"@oclif/core": "^4.3.0",
"open": "^10.2.0",
"printf": "^0.6.1",
"tsheredoc": "^1"
},
"devDependencies": {
"@heroku-cli/test-utils": "^1.0.0",
"@types/mocha": "^10",
"@types/node": "^22",
"@types/sinon": "^17",
"ansis": "^3",
"c8": "^10.1.3",
"chai": "^5.1.2",
"eslint": "^9",
"eslint-config-oclif": "^6.0.144",
"eslint-plugin-mocha": "^11.2.0",
"mocha": "^11.1.0",
"nock": "^14.0.1",
"oclif": "^4.22.81",
"sinon": "^20",
"tsx": "^4.21.0",
"typescript": "^5"
},
"engines": {
"node": ">= 20"
},
"files": [
"oclif.manifest.json",
"dist"
],
"homepage": "https://github.com/heroku/heroku-cli-plugin-ai",
"keywords": [
"heroku-plugin",
"oclif"
],
"license": "Apache-2.0",
"oclif": {
"bin": "heroku",
"commands": "./dist/commands",
"topics": {
"ai": {
"description": "manage Heroku AI models"
}
}
},
"repository": "heroku/heroku-cli-plugin-ai",
"scripts": {
"build": "rm -rf dist && tsc && oclif manifest",
"lint": "eslint .",
"postpublish": "rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepare": "npm run build",
"test": "c8 mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"//overrides": "serialize-javascript: mocha transitive dep, pinned for CVE-2024-11831; diff: mocha/sinon transitive dep, pinned for GHSA-73rr-hh4g-fpgx",
"overrides": {
"serialize-javascript": "^7.0.5",
"diff": "^9.0.0"
}
}