-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.49 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
{
"name": "greasemonkeyscripts",
"version": "1.0.0",
"description": "My collection of GreaseMonkey scripts",
"scripts": {
"format": "npx prettier --write \"**/*.{md,json,yml,html,ts}\"",
"format:check": "npx prettier --check \"**/*.{md,json,yml,html,ts}\"",
"lint": "npx eslint --fix src/**/*.ts",
"lint:check": "npx eslint src/**/*.ts",
"create-headers": "npx ts-node ./src/scripts/create-headers.ts \"./src/main/**/*.meta.json\" ./dist",
"build": "npx esbuild ./src/main/**/*.ts --bundle --sourcemap --charset=utf8 --target=es6 --log-level=warning --banner:js='/* jshint esversion: 6 */' --outdir=./dist && npm run create-headers",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bricemciver/GreasemonkeyScripts.git"
},
"author": "Brice McIver",
"license": "ISC",
"bugs": {
"url": "https://github.com/bricemciver/GreasemonkeyScripts/issues"
},
"homepage": "https://github.com/bricemciver/GreasemonkeyScripts#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@types/glob": "^8.1.0",
"@types/greasemonkey": "^4.0.4",
"@types/node": "^22.3.0",
"@types/tampermonkey": "^5.0.3",
"esbuild": "^0.23.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"dependencies": {
"glob": "^11.0.0"
}
}