-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 3.12 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
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
{
"name": "ngx-exitus-tiptap-editor",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"watch-lib": "ng build ngx-exitus-tiptap-editor --watch",
"build": "ng build",
"build:lib": "ng build ngx-exitus-tiptap-editor",
"prebuild:lib": "mkdir -p projects/ngx-exitus-tiptap-editor/assets/telemeter-wasm && cp node_modules/@wiris/mathtype-html-integration-devkit/telemeter-wasm/* projects/ngx-exitus-tiptap-editor/assets/telemeter-wasm/",
"postbuild:lib": "rm -rf projects/ngx-exitus-tiptap-editor/assets && sass projects/ngx-exitus-tiptap-editor/src/lib/preview.scss dist/ngx-exitus-tiptap-editor/preview.css",
"build:pages": "ng build --configuration production --base-href /ngx-exitus-tiptap-editor/",
"watch:lib": "npm run prebuild:lib && ng build ngx-exitus-tiptap-editor --watch",
"setup:link": "npm run build:lib && cd dist/ngx-exitus-tiptap-editor && npm link && cd ../.. && npm link ngx-exitus-tiptap-editor",
"dev": "rm -rf dist && concurrently \"npm run watch:lib\" \"wait-on dist/ngx-exitus-tiptap-editor/index.d.ts && npm run start\"",
"watch": "ng build --watch --configuration development",
"publish": "npm run build:lib && cd dist/ngx-exitus-tiptap-editor && npm publish",
"test": "ng test",
"lint": "ng lint",
"format": "prettier --write \"**/*.{ts,html,scss,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,html,scss,json,md}\""
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"dependencies": {
"@angular/common": "^20.3.0",
"@angular/compiler": "^20.3.0",
"@angular/core": "^20.3.0",
"@angular/forms": "^20.3.0",
"@angular/platform-browser": "^20.3.0",
"@angular/router": "^20.3.0",
"@tiptap/core": "^3.20.0",
"@tiptap/extension-bubble-menu": "^3.20.0",
"@tiptap/extension-gapcursor": "^3.20.0",
"@tiptap/extension-subscript": "^3.20.0",
"@tiptap/extension-superscript": "^3.20.0",
"@tiptap/extension-table": "^3.20.0",
"@tiptap/extension-table-cell": "^3.20.0",
"@tiptap/extension-table-header": "^3.20.0",
"@tiptap/extension-table-row": "^3.20.0",
"@tiptap/extension-text-align": "^3.20.0",
"@tiptap/pm": "^3.20.0",
"@tiptap/starter-kit": "^3.20.0",
"@wiris/mathtype-html-integration-devkit": "^1.17.13",
"katex": "^0.16.27",
"ngx-tiptap": "^14.0.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^20.3.8",
"@angular/cli": "^20.3.8",
"@angular/compiler-cli": "^20.3.0",
"@types/jasmine": "~5.1.0",
"angular-eslint": "21.0.1",
"concurrently": "^9.2.0",
"eslint": "^9.39.1",
"jasmine-core": "~5.9.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^20.3.0",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"typescript": "~5.9.2",
"typescript-eslint": "8.46.4",
"wait-on": "^8.0.3"
}
}