-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
49 lines (49 loc) · 1.34 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
41
42
43
44
45
46
47
48
49
{
"name": "action-devcard",
"version": "3.2.0",
"description": "GitHub Action to download the devcard from daily.dev",
"private": true,
"author": {
"name": "Ole-Martin Bratteng",
"email": "[email protected]"
},
"contributors": [
{
"name": "Ole-Martin Bratteng",
"email": "[email protected]"
},
{
"name": "Milan Freml",
"email": "[email protected]"
}
],
"scripts": {
"lint": "eslint 'src/**/*.ts' --cache",
"build": "ncc build --out dist --target es2023 --minify --license license.txt src/index.ts"
},
"main": "src/index.ts",
"repository": "github:dailydotdev/action-devcard",
"bugs": "https://github.com/dailydotdev/action-devcard/issues",
"license": "BSD-3-Clause",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"node-fetch": "^3.3.2",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@octokit/graphql": "^8.1.1",
"@types/jsdom": "21.x",
"@types/node": "22.x",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vercel/ncc": "0.38.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]"
}