-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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": "butler-to-itch",
"version": "1.1.0",
"private": true,
"description": "Setup renpy action",
"author": "Ayowel",
"license": "MIT",
"main": "dist/setup/index.js",
"scripts": {
"build": "ncc build -o dist/setup src/butler-manage.ts",
"format": "prettier --write \"{,!(node_modules)/**/}*.ts\"",
"format-check": "prettier --check \"{,!(node_modules)/**/}*.ts\"",
"lint": "echo \"Fake command that does nothing. It is used in reusable workflows\"",
"prerelease": "npm run-script build",
"release": "git add -f dist/setup/index.js dist/cleanup/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayowel/butler-to-itch.git"
},
"keywords": [
"actions",
"renpy",
"setup"
],
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/tool-cache": "^2.0.1",
"glob": "^10.4.1"
},
"devDependencies": {
"@types/follow-redirects": "^1.14.4",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/mock-fs": "^4.13.4",
"@types/node": "^20.14.2",
"@vercel/ncc": "^0.38.1",
"follow-redirects": "^1.15.6",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"mock-fs": "^5.2.0",
"prettier": "^3.3.1",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
}
}