generated from stscoundrel/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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": "alliser-action",
"version": "1.0.0",
"description": "Run Alliser using Github Actions",
"repository": "https://github.com/stscoundrel/alliser-action.git",
"author": "stscoundrel <[email protected]>",
"license": "MIT",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"alliser": "^0.6.6"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix",
"build": "ncc build -m src/index.ts"
}
}