-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "@imbricate/markdown-render",
"packageManager": "[email protected]",
"version": "1.2.0",
"description": "Markdown Renderer for Imbricate",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"build": "tsc --project typescript/tsconfig.build.json",
"license": "sdb license",
"release": "yarn lint && yarn test && yarn license && yarn build",
"publish-dry-run": "yarn release && sdb --only publish-dry-run",
"publish": "yarn release && sdb --only publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Imbricate/Imbricate-Markdown-Render.git"
},
"keywords": [
"imbricate",
"markdown"
],
"author": "WMXPY",
"license": "MIT",
"bugs": {
"url": "https://github.com/Imbricate/Imbricate-Markdown-Render/issues"
},
"homepage": "https://imbricate.io",
"dependencies": {
"highlight.js": "^11.10.0",
"showdown": "^2.1.0",
"showdown-katex": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/showdown": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"babel-jest": "^29.7.0",
"eslint": "^9.14.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}