-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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": "@rotki/action-env",
"version": "2.0.2",
"private": true,
"packageManager": "[email protected]",
"description": "Loads environment variables from a .env file",
"keywords": [
"actions",
"node",
"setup"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/rotki/action-env.git"
},
"author": "Rotki Solutions GmbH <[email protected]>",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"package": "ncc build --source-map --license licenses.txt",
"test": "vitest",
"all": "npm run build && npm run lint && npm run package && npm test",
"preinstall": "npx only-allow pnpm",
"release": "bumpp --no-push"
},
"dependencies": {
"@actions/core": "1.10.1",
"dotenv": "16.4.5"
},
"devDependencies": {
"@rotki/eslint-config": "2.9.1",
"@types/node": "20.14.15",
"@vercel/ncc": "0.38.1",
"bumpp": "9.5.1",
"eslint": "8.57.0",
"eslint-plugin-github": "5.0.1",
"js-yaml": "4.1.0",
"prettier": "3.3.3",
"typescript": "5.5.4",
"vitest": "2.0.5"
},
"engines": {
"node": ">=20 <21",
"pnpm": ">=9 <10"
}
}