-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.34 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.34 KB
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": "@filteringdev/abb-kluncheon",
"version": "1.1.0",
"description": "",
"type": "module",
"scripts": {
"build:interface": "",
"build:userscript": "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=es2024,chrome119,safari17,firefox121 --outfile=./dist/abb-kluncheon.user.js",
"build": "npm run build:interface && npm run build:userscript",
"debug": "esbuild sources/src/index.ts --bundle --define:global=window --inject:./sources/esbuild.inject.ts --banner:js=\"$(cat ./sources/banner.txt)\" --target=es2024,chrome119,safari17,firefox121 --outfile=./dist/abb-kluncheon-debug.user.js",
"lint": "tsc --noEmit && eslint sources/**/*.ts"
},
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/interface.js",
"types": "./dist/types/interface.d.ts"
}
},
"types": "./dist/types/interface.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/FilteringDev/abb-kluncheon.git"
},
"license": "MIT",
"dependencies": {
"@types/node": "^24.9.2"
},
"devDependencies": {
"esbuild": "^0.27.0",
"eslint": "^9.38.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"packageManager": "npm@11.5.1+"
}