-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 882 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "egoscripts",
"version": "%RELEASE_VERSION%",
"description": "Various userscripts to improve the experience of the eGO (and related) sites.",
"author": "blank_dvth",
"license": "GPL-3.0",
"homepage": "https://github.com/blankdvth/eGOScripts#readme",
"bugs": {
"url": "https://github.com/blankdvth/eGOScripts/issues"
},
"scripts": {
"build": "tsc",
"build-dev": "tsc && for file in dist/*.js; do sed -i \"s/%RELEASE_TYPE%/ - Development/g\" \"$file\";done",
"build-dev-win": "tsc && sed -i \"s/%RELEASE_TYPE%/ - Development/g\" \"dist/*\" && del \"dist\\*.\"",
"prettify": "prettier --tab-width 4 --write \"src/**/*.ts\""
},
"devDependencies": {
"@types/tampermonkey": "^4.0.10",
"prettier": "^3.7.4",
"typescript": "^4.9.4",
"uglify-js": "^3.17.4"
}
}