-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "replicated-actions",
"version": "1.0.0",
"description": "## Examples",
"main": "build/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc",
"test": "npx jest --verbose",
"package": "rollup -c",
"prettier": "npx prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/replicatedhq/replicated-actions.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/replicatedhq/replicated-actions/issues"
},
"homepage": "https://github.com/replicatedhq/replicated-actions#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"randomstring": "^1.3.1",
"replicated-lib": "^0.0.1-beta.32",
"semver": "^7.7.4",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2"
},
"engines": {
"node": "24.x"
},
"overrides": {
"braces": ">=3.0.3",
"micromatch": ">=4.0.8"
},
"type": "module"
}