generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 KB
/
package.json
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
{
"name": "create-distr-version-action",
"description": "This action creates a new version of a Distr application",
"version": "1.2.0",
"license": "Apache-2.0",
"type": "module",
"private": true,
"homepage": "https://distr.sh",
"repository": {
"type": "git",
"url": "git+https://github.com/glasskube/create-distr-version-action.git"
},
"bugs": {
"url": "https://github.com/glasskube/create-distr-version-action/issues"
},
"keywords": [
"actions"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run lint:fix && npm run package",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"local-action": "npx local-action . src/main.ts .env",
"package": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"all": "npm run lint:fix && npm run lint && npm run package"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@glasskube/distr-sdk": "^1.1.0"
},
"devDependencies": {
"@github/local-action": "^2.5.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.0.0",
"prettier": "^3.4.2",
"rollup": "^4.34.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
}
}