-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 890 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 890 Bytes
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
{
"name": "@fumix/fu-blog-common",
"version": "0.2.5",
"author": "fumiX GmbH & Co KG",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"lint": "prettier --check 'src/**/*.(ts|vue)' && eslint src/**/*.ts",
"lintfix": "prettier 'src/**/*.(ts|vue)' --write && eslint src/**/*.ts --fix",
"test": "node --test --loader ts-node/esm tests/**/*.ts"
},
"dependencies": {
"highlight.js": "10.7.3",
"isomorphic-dompurify": "2.26.0",
"marked": "14.1.2",
"marked-highlight": "2.1.4",
"marked-mangle": "1.1.9",
"node-fetch": "3.3.2",
"pako": "2.1.0",
"sha.js": "2.4.11"
},
"devDependencies": {
"@types/jsdom": "^21.1.1",
"@types/node-fetch": "^2.6.2",
"@types/pako": "^2.0.0",
"@types/sha.js": "^2.4.0"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
}
}