-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1012 Bytes
/
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
{
"name": "setup-flox",
"version": "1.0.0",
"description": "Setup Flox on GitHub Actions.",
"main": "dist/action.js",
"scripts": {
"format": "prettier --write src",
"build": "tsc -p .",
"start": "ts-node-esm src/action.ts",
"start:dist": "node dist/action.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsirysndr/setup-flox.git"
},
"keywords": [
"flox"
],
"author": "Tsiry Sandratraina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsirysndr/setup-flox/issues"
},
"homepage": "https://github.com/tsirysndr/setup-flox#readme",
"type": "module",
"dependencies": {
"@actions/cache": "^3.2.1",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"esbuild": "^0.17.12",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}