-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
65 lines (65 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@larscom/ng-chrome-extension",
"shortName": "ng-chrome",
"version": "3.2.4",
"description": "CLI to generate angular chrome extensions",
"main": "./bin/main.js",
"type": "module",
"bin": {
"ng-chrome": "bin/main.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larscom/ng-chrome-extension.git"
},
"bugs": {
"url": "https://github.com/larscom/ng-chrome-extension/issues"
},
"homepage": "https://github.com/larscom/ng-chrome-extension#readme",
"scripts": {
"start": "rollup -c && node ./dist/bin/main.js",
"build": "rollup -c"
},
"keywords": [
"ng-chrome",
"ng",
"angular",
"chrome",
"extension",
"google",
"manifest",
"rxjs"
],
"author": "Lars Kniep",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.14",
"axios": "^1.7.2",
"clear": "^0.1.0",
"commander": "^12.1.0",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.23",
"kleur": "^4.1.5",
"ora": "^8.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/adm-zip": "^0.5.5",
"@types/bun": "latest",
"@types/clear": "^0.1.4",
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.8",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"typescript": "^5.5.2"
}
}