-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 902 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 902 Bytes
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
{
"name": "workshop-upload",
"version": "1.0.4",
"description": "Upload an addon to the Garry's Mod Steam Workshop.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsup src/index.ts src/cli.ts",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"keywords": [
"gmod",
"workshop",
"publish",
"addon"
],
"author": "dhkatz",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.13.13",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@gmod-workshop/steamdown": "^1.0.0",
"decompress": "^4.2.1",
"glob": "^11.0.1"
},
"optionalDependencies": {
"commander": "^13.1.0"
},
"tsup": {
"format": [
"esm"
],
"clean": true,
"sourcemap": true,
"dts": true
}
}