-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.65 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
39
40
41
42
43
44
45
46
{
"name": "angular-chrome-extension",
"version": "1.0.0",
"author": "Lars Kniep",
"description": "Angular Chrome Extension Template",
"scripts": {
"ng": "ng",
"start": "npm run watch",
"build:angular": "ng build --configuration development",
"build:angular-production": "ng build --configuration production",
"watch:angular": "ng build --watch --configuration development --delete-output-path false --source-map=true --plugin ~angular/sourcemaps-plugin.js",
"build:chrome": "(cd chrome && rollup -c)",
"watch:chrome": "(cd chrome && rollup -c --watch)",
"build": "npm run clean && npm run build:angular && npm run build:chrome",
"build:production": "npm run build:angular-production && npm run build:chrome && npm run pack",
"watch": "npm run clean && npm-run-all --parallel watch:*",
"clean": "rimraf angular/dist",
"pack": "cd angular/dist && bestzip ../../extension-build.zip *"
},
"private": true,
"dependencies": {
"@angular/animations": "20.0.1",
"@angular/common": "20.0.1",
"@angular/compiler": "20.0.1",
"@angular/core": "20.0.1",
"@angular/forms": "20.0.1",
"@angular/platform-browser": "20.0.1",
"@angular/platform-browser-dynamic": "20.0.1",
"@angular/router": "20.0.1",
"ngx-build-plus": "20.0.0",
"rxjs": "7.8.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.0.1",
"@angular/cli": "20.0.1",
"@angular/compiler-cli": "20.0.1",
"@types/chrome": "0.0.326",
"bestzip": "2.2.1",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"typescript": "5.8.3",
"webpack": "^5.99.9",
"webpack-merge": "^6.0.1"
}
}