-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 997 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 997 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
35
36
37
{
"name": "action-name",
"version": "0.0.0",
"type": "module",
"description": "Action description",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build lib/main.js --minify",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freckle/TODO-action.git"
},
"author": "Freckle",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.0"
},
"devDependencies": {
"@actions/glob": "^0.6.1",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"@octokit/types": "^16.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.12.2",
"@vercel/ncc": "^0.38.4",
"jest": "^30.3.0",
"prettier": "^3.8.3",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}