1
0
Fork 0
toolkit/packages/artifact/package.json

52 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "@actions/artifact",
2023-01-03 14:19:24 +00:00
"version": "1.1.1",
"preview": true,
"description": "Actions artifact lib",
"keywords": [
"github",
"actions",
"artifact"
],
"homepage": "https://github.com/actions/toolkit/tree/main/packages/artifact",
"license": "MIT",
2023-08-01 16:15:33 +00:00
"main": "lib/artifact.js",
"types": "lib/artifact.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"!.DS_Store"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/toolkit.git",
"directory": "packages/artifact"
},
"scripts": {
"audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
"test": "echo \"Error: run tests from root\" && exit 1",
"tsc": "tsc"
},
"bugs": {
"url": "https://github.com/actions/toolkit/issues"
},
"dependencies": {
2023-08-01 21:33:32 +00:00
"@actions/core": "^1.10.0",
"@azure/storage-blob": "^12.15.0",
"@types/node": "^20.4.5",
"archiver": "^5.3.1"
},
"devDependencies": {
2023-08-01 14:36:49 +00:00
"@protobuf-ts/plugin": "^2.2.3-alpha.1",
2023-08-01 21:33:32 +00:00
"@types/archiver": "^5.3.2",
2023-08-01 14:36:49 +00:00
"twirp-ts": "^2.5.0",
2023-08-01 15:11:34 +00:00
"typescript": "^3.9.10"
}
}