generated from MysteryBlokHed/webpack-ts-userscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "greasetools",
"version": "0.5.0",
"description": "Functions and other tools for GreaseMonkey UserScript development.",
"author": "Adam Thompson-Sharpe",
"license": "MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "https://gitlab.com/MysteryBlokHed/greasetools.git"
},
"files": [
"lib/**/*",
"LICENSE*",
"CHANGELOG.md",
"README.md"
],
"homepage": "https://gitlab.com/MysteryBlokHed/greasetools#greasetools",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc && node update-dts.js && webpack",
"dev": "nodemon -w src -e ts --exec \"yarn build || exit 1\"",
"lint": "prettier \"**/*.{js,ts,json,md,yml}\"",
"doc": "typedoc",
"release": "yarn build && yarn build --mode production && git add . && git commit -m \":bookmark: Release <version>\" --edit && git rm ./*.min.user.js"
},
"dependencies": {
"@types/greasemonkey": "^4.0.2"
},
"devDependencies": {
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"typedoc": "^0.22.11",
"typescript": "^4.4.4",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1"
}
}