-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 1.03 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
{
"name": "@list-kr/tinyshield",
"version": "1.3.39",
"description": "",
"type": "module",
"scripts": {
"build": "esbuild sources/src/index.ts --bundle --minify-whitespace --minify-syntax --define:global=window --inject:./sources/esbuild.inject.ts --banner:js=\"$(cat ./sources/banner.txt)\" --target=es2022,chrome109,safari16,firefox115 --outfile=./dist/tinyShield.user.js",
"debug": "esbuild sources/src/index.ts --bundle --define:global=window --inject:./sources/esbuild.inject.ts --banner:js=\"$(cat ./sources/banner.txt)\" --target=es2022,chrome109,safari16,firefox115 --outfile=./dist/tinyShield-debug.user.js",
"lint": "tsc --noEmit && eslint sources/**/*.ts"
},
"keywords": [],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/List-KR/tinyShield"
},
"license": "MIT",
"dependencies": {
"@types/node": "^22.10.2"
},
"devDependencies": {
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}