-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 807 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 807 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
{
"name": "sloth",
"version": "1.0.0",
"private": true,
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24"
},
"license": "MIT",
"scripts": {
"bundle": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt",
"lint": "npx eslint . -c .eslintrc.yml",
"test": "npx vitest run",
"test:watch": "npx vitest"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jsonc": "^2.15.1",
"typescript": "^5.4.5",
"vitest": "^4.1.2"
}
}