-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "@list-kr/namulink",
"version": "10.4.0",
"description": "",
"type": "module",
"scripts": {
"build": "esbuild sources/src/index.ts --bundle --minify --define:global=window --inject:./sources/esbuild.inject.ts --banner:js=\"$(cat ./sources/banner.txt)\" --target=es2022,chrome109,safari16,firefox115 --outfile=./dist/NamuLink.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/NamuLink-debug.user.js",
"lint": "tsc && eslint sources --ext .ts"
},
"keywords": [],
"author": {
"name": "PiQuark6046",
"email": "[email protected]",
"url": "https://github.com/PiQuark6046"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/List-KR/NamuLink"
},
"contributors": [
{
"name": "green1052",
"url": "https://github.com/green1052"
},
{
"name": "gaeulbyul",
"url": "https://github.com/gaeulbyul"
},
{
"name": "Adguard Software Ltd.",
"url": "https://adguard.com/"
}
],
"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.1"
}
}