-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.45 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
{
"name": "namulink",
"version": "3.10.0",
"description": "",
"type": "module",
"scripts": {
"build": "pnpm bundle",
"bundle": "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=./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=./NamuLink-debug.user.js",
"lint": "tsc && eslint sources --ext .ts"
},
"keywords": [],
"author": {
"name": "PiQuark6046",
"email": "piquark6046@proton.me",
"url": "https://github.com/PiQuark6046"
},
"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": "^20.12.7",
"multithread-array": "^2.0.0",
"p-limit": "^5.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"pnpm": "^9.0.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1"
}
}