-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 791 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "LLM_Superset.popclipext",
"version": "2.0.0",
"description": "PopClip LLM extensions",
"private": "true",
"scripts": {
"check": "tsc --noEmit",
"format": "biome format --write",
"build": "esbuild src/Config.ts --bundle --minify --tree-shaking=true --platform=node --packages=external --target=node10.4 --define:process.env.NODE_ENV=\\\"production\\\" --outfile=src/Config.js",
"bundle": "pnpm build && ./bundle.sh",
"install_bundle": "pnpm bundle && open LLM_Superset.popclipext",
"test": "ts-node src/parseurl.test.ts"
},
"dependencies": {},
"devDependencies": {
"axios": "1.13.3",
"typescript": "5.9.3",
"@biomejs/biome": "2.3.13",
"@popclip/types": "1.4892.0",
"esbuild": "0.27.2",
"@types/node": "25.0.10"
}
}