-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.21 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
{
"name": "automagically-action-execute",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b",
"scripts": {
"lint": "eslint src/**/*.ts -c .eslintrc.json",
"test": "vitest run",
"test:watch": "vitest watch",
"build": "rimraf ./dist && ncc build src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OctoMind-dev/automagically-action-execute.git"
},
"author": "OctoMind-dev",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@typescript-eslint/parser": "^8.14.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-github": "^5.0.2",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5"
}
}