-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 3.36 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "obsidian-web-clipper",
"packageManager": "[email protected]",
"type": "module",
"version": "1.0.4",
"scripts": {
"ng": "ng",
"lint": "cd ./dist && web-ext lint",
"lint:dev": "npm-run-all build:dev lint",
"build": "npm-run-all build:angular build:content lint",
"build:angular": "ng build --extra-webpack-config webpack.externals.cjs",
"build:content": "esbuild src/content-scripts/index.ts --outfile=dist/content-script.js --bundle --format=esm --minify --sourcemap --target=firefox57",
"build:dev": "ng build --stats-json --configuration development --extra-webpack-config webpack.externals.cjs",
"build:dev:content": "esbuild src/content-scripts/index.ts --outfile=dist/content-script.js --bundle --format=esm --sourcemap --target=firefox57",
"watch:angular": "ng build --stats-json --extra-webpack-config webpack.externals.cjs --watch --configuration development",
"watch:content": "esbuild src/content-scripts/index.ts --outfile=dist/content-script.js --watch --bundle --format=esm --sourcemap --target=firefox57",
"watch:package": "cd ./dist && web-ext run --verbose",
"analyze": "webpack-bundle-analyzer dist/stats.json",
"postinstall": "ngcc",
"postinstall:bak": "ngcc"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.0.1",
"@angular/cdk": "^15.0.0",
"@angular/common": "^15.0.1",
"@angular/compiler": "^15.0.1",
"@angular/core": "^15.0.1",
"@angular/elements": "15.0.1",
"@angular/forms": "^15.0.1",
"@angular/platform-browser": "^15.0.1",
"@angular/platform-browser-dynamic": "^15.0.1",
"@angular/router": "^15.0.1",
"@availity/resolve-url": "^2.0.3",
"@settingdust/article-extractor": "^0.3.0",
"@taiga-ui/addon-doc": "^3.10.0",
"@taiga-ui/addon-table": "^3.10.0",
"@taiga-ui/addon-tablebars": "^3.10.0",
"@taiga-ui/cdk": "^3.10.0",
"@taiga-ui/core": "^3.10.0",
"@taiga-ui/icons": "^3.10.0",
"@taiga-ui/kit": "^3.10.0",
"@taiga-ui/styles": "^3.10.0",
"@tinkoff/ng-dompurify": "^4.0.0",
"@webcomponents/custom-elements": "^1.5.1",
"dompurify": "^2.4.1",
"filenamify": "^5.1.1",
"mustache": "^4.2.0",
"node-html-markdown": "^1.2.2",
"rxjs": "~7.5.7",
"tinykeys": "^1.4.0",
"tslib": "^2.4.1",
"urlpattern-polyfill": "^6.0.2",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.0",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "15.1.0",
"@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/schematics": "15.1.0",
"@angular-eslint/template-parser": "15.1.0",
"@angular/cli": "^15.0.0",
"@angular/compiler-cli": "^15.0.1",
"@types/dompurify": "^2.4.0",
"@types/firefox-webext-browser": "^94.0.1",
"@types/mustache": "^4",
"@types/node": "~16",
"@types/sanitize-html": "^2.6.2",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"esbuild": "^0.15.15",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-unicorn": "^45.0.0",
"ngx-build-plus": "^15.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"typescript": "~4.8.4",
"web-ext": "^7.3.1",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0"
}
}