-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.58 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.58 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
{
"name": "pinboard-pin",
"version": "0.4.5",
"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": "^21.2.7",
"@angular/compiler": "^21.2.7",
"@angular/core": "^21.2.7",
"@angular/forms": "^21.2.7",
"@angular/platform-browser": "^21.2.7",
"@angular/platform-browser-dynamic": "^21.2.7",
"@angular/router": "^21.2.7",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.2.6",
"@angular/cli": "^21.2.6",
"@angular/compiler-cli": "^21.2.7",
"@angular/language-service": "^21.2.7",
"@angular-eslint/builder": "^21.3.1",
"@angular-eslint/eslint-plugin": "^21.3.1",
"@angular-eslint/eslint-plugin-template": "^21.3.1",
"@angular-eslint/schematics": "^21.3.1",
"@angular-eslint/template-parser": "^21.3.1",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@types/firefox-webext-browser": "^143.0.0",
"eslint": "^9.39.4",
"typescript": "^5.9.3",
"web-ext": "^10.1.0"
}
}