-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.28 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
{
"name": "pinboard-pin",
"version": "0.5.0",
"license": "MIT",
"type": "module",
"scripts": {
"build": "ng build",
"build:prod": "ng build --configuration production --source-map=false --output-hashing=none",
"build:ext": "web-ext build --source-dir=dist/browser --artifacts-dir=. --overwrite-dest",
"build:zip": "npm run build:prod && npm run build:ext",
"lint": "eslint . --ext .ts,.html",
"lint:ext": "npm run build:prod && web-ext lint --source-dir=dist/browser",
"test": "web-ext run --source-dir=dist/browser --firefox='firefox'"
},
"private": true,
"dependencies": {
"@angular/common": "^22.0.4",
"@angular/compiler": "^22.0.4",
"@angular/core": "^22.0.4",
"@angular/forms": "^22.0.4",
"@angular/platform-browser": "^22.0.4",
"@angular/router": "^22.0.4",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^22.0.4",
"@angular/cli": "^22.0.4",
"@angular/compiler-cli": "^22.0.4",
"@angular/language-service": "^22.0.4",
"@eslint/js": "^10.0.1",
"@types/firefox-webext-browser": "^143.0.0",
"@types/node": "^26.0.1",
"angular-eslint": "^22.0.0",
"eslint": "^10.6.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"web-ext": "^10.4.0"
}
}