-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 978 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 978 Bytes
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
{
"name": "altimate-code-actions",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
"build": "bun run esbuild.config.ts",
"test": "bun test",
"test:e2e": "bun test test/e2e/",
"test:unit": "bun test test/unit/",
"test:integration": "bun test test/integration/",
"lint": "eslint src/ test/",
"typecheck": "tsc --noEmit",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/graphql": "^8.0.0",
"@octokit/rest": "^21.0.0",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@types/bun": "^1.1.0",
"@types/js-yaml": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"typescript": "^5.5.0"
}
}