-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 801 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 801 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": "action-autobuild-release",
"version": "0.1.0",
"description": "Publish autobuild artifacts",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "ncc build --source-map --license license.txt src/main.ts",
"all": "npm run build && npm test"
},
"keywords": [],
"author": "Linden Research, Inc.",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/mime": "^4.0.0",
"@types/node": "^24.3.1",
"@vercel/ncc": "^0.38.3",
"jest": "^30.1.3",
"nock": "^14.0.10",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@actions/artifact": "^2.3.2",
"@actions/core": "^1.11.1",
"@aws-sdk/client-s3": "^3.887.0",
"mime": "^4.0.7"
}
}