-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.83 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@fsegurai/ngx-markdown",
"version": "19.1.0",
"description": "Angular library that uses marked to parse markdown to html combined with Prism.js for syntax highlights",
"homepage": "https://github.com/fsegurai/ngx-markdown",
"license": "MIT",
"author": {
"name": "Fabián Segura",
"url": "https://www.fsegurai.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/fsegurai/ngx-markdown"
},
"keywords": [
"angular",
"ngx",
"markdown",
"parser",
"marked",
"marked.js",
"prism",
"prism.js",
"katex",
"emoji",
"clipboard",
"clipboard.js",
"ngx-markdown"
],
"engines": {
"bun": ">= 1.0.0 < 2.0.0",
"npm": "Please use Bun instead of NPM to install dependencies"
},
"scripts": {
"ng": "ng",
"start": "bun link:lib && ng serve",
"build:demo": "ng build demo --configuration production",
"build:lib": "ng build lib --configuration production",
"postBuild:lib": "cpy ./README.md ./dist/lib && cpy ./LICENSE ./dist/lib",
"link:lib": "rimraf --glob node_modules/ngx-markdown && linklocal",
"lint": "bun lint:lib && bun lint:demo",
"lint:demo": "ng lint demo",
"lint:lib": "ng lint lib",
"type-check:demo": "tsc --project ./demo/tsconfig.app.json --inlineSourceMap --noEmit",
"type-check:lib": "tsc --project ./lib/tsconfig.lib.json --inlineSourceMap --noEmit",
"watch": "ng build --watch --configuration development",
"test-local:lib": "ng test",
"test-ci_cd:lib": "ng test --no-watch --no-progress --browsers=ChromeHeadless",
"gh-pages:build": "bun build:demo --aot --base-href=./",
"gh-pages:copy404": "cpy ./dist/demo/browser/index.html . --rename=404.html",
"gh-pages:postBuild": "cpy ./dist/demo/3rdpartylicenses.txt ./dist/demo/browser --flat",
"registry:npm": "npm config set registry https://registry.npmjs.org/",
"registry:gh-npm": "npm config set registry https://npm.pkg.github.com/",
"registry:yarn": "npm config set registry https://registry.yarnpkg.com/"
},
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/cdk": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/flex-layout": "15.0.0-beta.42",
"@angular/forms": "^19.0.0",
"@angular/material": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"clipboard": "^2.0.11",
"emoji-toolkit": "^9.0.1",
"gumshoejs": "^5.1.2",
"hammerjs": "~2.0.8",
"katex": "0.16.11",
"marked": "15.0.3",
"marked-gfm-heading-id": "^4.1.1",
"mermaid": "^11.4.1",
"ngx-markdown": "file:lib",
"prismjs": "^1.29.0",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0",
"@angular/cli": "~19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@angular/language-service": "^19.0.0",
"@eslint/js": "^9.16.0",
"@types/jasmine": "~5.1.5",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@typescript-eslint/types": "8.17.0",
"@typescript-eslint/utils": "^8.17.0",
"angular-eslint": "^19.0.1",
"cpy-cli": "^5.0.0",
"eslint": "^9.16.0",
"eslint-formatter-checkstyle": "^8.40.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"jasmine-core": "~5.5.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"karma-junit-reporter": "^2.0.1",
"linklocal": "^2.8.2",
"ng-packagr": "^19.0.1",
"rimraf": "^6.0.1",
"typescript": "~5.6.3",
"typescript-eslint": "^8.17.0"
}
}