-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.99 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "oz-cli-action",
"version": "0.0.1",
"main": "index.js",
"private": true,
"keywords": [
"actions"
],
"type": "module",
"author": "Warp Team <dev@warp.dev>",
"license": "MIT",
"description": "Run the Oz agent in a GitHub workflow",
"homepage": "https://github.com/warpdotdev/oz-agent-action#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/warpdotdev/oz-agent-action.git"
},
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm run bundle && npm run gen-workflows",
"bundle": "npm run format:write && npm run package",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint .",
"package": "npx rollup --config rollup.config.js",
"act": "npm run package && act --container-architecture linux/amd64 -j run_oz_test -s WARP_API_KEY",
"gen-workflows": "node scripts/build-workflows.mjs && npx prettier --write .github/workflows && npx prettier --write consumer-workflows",
"test": "vitest run"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.1",
"@actions/tool-cache": "^4.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@eslint/js": "^9.39.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"rollup": "^4.61.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"vitest": "^4.1.7",
"yaml": "^2.8.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"overrides": {
"@typescript-eslint/typescript-estree": {
"minimatch": "9.0.9"
},
"undici": ">=8.9.0",
"brace-expansion": ">=1.1.16"
}
}