This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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
{
"name": "markdown-it-shiki",
"version": "0.9.0",
"packageManager": "[email protected]",
"description": "Markdown It plugin for Shiki",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/antfu/markdown-it-shiki#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/markdown-it-shiki.git"
},
"bugs": {
"url": "https://github.com/antfu/markdown-it-shiki/issues"
},
"keywords": [
"markdown-it",
"markdown-it-plugin",
"highlight",
"shiki"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"watch": "npm run build -- --watch",
"dev": "esno src/index.ts",
"lint": "eslint .",
"build": "tsup src/index.ts src/worker.ts --format cjs,esm --dts --external ./worker",
"publish:ci": "npm publish --access public",
"release": "npx bumpp --commit --push --tag && npm run publish:ci"
},
"dependencies": {
"shiki": "^0.14.2",
"synckit": "^0.8.5"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.5",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.16.3",
"eslint": "^8.39.0",
"esno": "^0.16.3",
"markdown-it": "^13.0.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
}
}