-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "export-secrets",
"version": "0.6.0",
"type": "module",
"description": "Export GitHub Actions secrets as environment variables",
"keywords": [
"actions"
],
"homepage": "https://github.com/koyashiro/export-secrets",
"bugs": {
"url": "https://github.com/koyashiro/export-secrets/issues"
},
"license": "MIT",
"author": "koyashiro",
"repository": {
"type": "git",
"url": "https://github.com/koyashiro/export-secrets.git"
},
"scripts": {
"build": "rm -rf dist/ && ncc build --license licenses.txt src/index.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run --coverage"
},
"dependencies": {
"@actions/core": "1.11.1",
"valibot": "0.42.1"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@vercel/ncc": "0.38.3",
"@vitest/coverage-v8": "2.1.8",
"eslint": "9.17.0",
"globals": "15.14.0",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "4.1.0",
"typescript": "5.7.2",
"typescript-eslint": "8.19.1",
"vitest": "2.1.8"
},
"private": true,
"volta": {
"node": "20.18.1",
"npm": "10.9.2"
}
}