forked from telegramdesktop/winget-releaser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.31 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
49
{
"name": "winget-releaser",
"version": "1.0.0",
"description": "Publish new releases of your application to Windows Package Manager easily.",
"main": "main.js",
"scripts": {
"all": "npm run format && npm run build",
"format": "prettier --write *.* .github --ignore-unknown",
"prebuild": "rmdir /s /q dist",
"build": "tsc && ncc build --license licenses.txt",
"postbuild": "del /q main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": true,
"endOfLine": "lf",
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/vedantmgoyal2009/winget-releaser.git"
},
"keywords": [
"windows",
"winget",
"github-actions"
],
"author": "Vedant",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/vedantmgoyal2009/winget-releaser/issues"
},
"homepage": "https://github.com/vedantmgoyal2009/winget-releaser#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/node": "^18.14.0",
"@types/node-fetch": "^2.6.2",
"@vercel/ncc": "^0.36.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}