-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "qa-instructions-action",
"version": "0.1.0",
"description": "A GitHub Action that writes QA instructions",
"main": "dist/index.js",
"scripts": {
"build": "tsc --noEmit && node esbuild.config.mjs",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint . --fix",
"format:prettier": "prettier --write .",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BadIdeaFactory/qa-instructions-action.git"
},
"license": "AGPL-3.0",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@anthropic-ai/sdk": "^0.80.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24",
"esbuild": "^0.27.3",
"eslint": "^10",
"eslint-config-prettier": "^10",
"eslint-plugin-prettier": "^5",
"prettier": "^3",
"typescript": "^5.9.3",
"typescript-eslint": "^8",
"vitest": "^4.0.18"
}
}