forked from ashish-chopra/chrome-extension-seed
-
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) · 911 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 911 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
30
31
32
33
34
35
36
37
38
{
"name": "create-extension",
"version": "1.0.10",
"description": "Create a browser extension.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"try-build": "rm -rf ./tested; node ./index.js -t -i -G tested; cd tested; npm run build-dev"
},
"bin": "./index.js",
"keywords": [
"extension",
"browser",
"chrome",
"addon"
],
"author": "Albert Patterson",
"repository": {
"type": "git",
"url": "https://github.com/albertpatterson/create-extension"
},
"license": "GPL-3.0",
"type": "module",
"dependencies": {
"arg": "^5.0.1",
"chalk": "^5.0.1",
"execa": "^6.1.0",
"inquirer": "^8.2.4",
"listr2": "^4.0.5",
"rimraf": "^3.0.2",
"simple_build_tools": "^1.0.3"
},
"devDependencies": {
"@types/chrome": "^0.0.188",
"@types/node": "^17.0.35",
"@types/rimraf": "^3.0.2"
}
}