-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 943 Bytes
/
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
{
"name": "@fumix/fu-blog-common",
"version": "0.2.4",
"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": {
"dompurify": "^3.0.1",
"highlight.js": "^11.9.0",
"jsdom": "^25.0.0",
"marked": "^14.1.2",
"marked-highlight": "^2.1.3",
"marked-mangle": "^1.1.8",
"node-fetch": "^3.3.1",
"pako": "2.1.0",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@types/dompurify": "^3.0.0",
"@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"
}
}