-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 774 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 774 Bytes
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": "webexter",
"version": "1.0.8",
"description": "A scaffolding CLI for quickly building browser extensions",
"type": "module",
"main": "dist/cli.js",
"bin": {
"webexter": "dist/cli.js"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc && rm -rf dist/templates && cp -r src/templates dist/templates",
"build:link": "pnpm build && pnpm link --global"
},
"keywords": ["browser-extension", "scaffold", "chrome-extension", "manifest-v3"],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.33.4",
"dependencies": {
"commander": "^13.1.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^22.15.0",
"@types/prompts": "^2.4.9",
"tsx": "^4.19.0",
"typescript": "^5.8.0"
}
}