-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "shada-it",
"version": "1.0.0",
"description": "Complete Syntax Highlighting for Markdown It with Shiki",
"author": "Maful Prayoga <me@maful.web.id>",
"license": "MIT",
"homepage": "https://github.com/maful/shada-it",
"repository": {
"type": "git",
"url": "https://github.com/maful/shada-it.git"
},
"bugs": {
"url": "https://github.com/maful/shada-it/issues"
},
"keywords": [
"markdown-it",
"markdown-it-plugin",
"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": "tsx src/index.ts",
"build": "tsup src/index.ts src/worker.ts --format cjs,esm --dts --external ./worker"
},
"dependencies": {
"shiki": "^0.14.2",
"synckit": "^0.8.5",
"tsx": "^3.12.7"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.16.3",
"markdown-it": "^13.0.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
}
}