-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "asciidoctor-shiki-extension",
"version": "0.0.3",
"description": "asciidoctor.js plugin for syntax highlight with shiki",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./dist && tsup src/index.ts src/worker.ts --format cjs,esm --dts --external ./worker"
},
"keywords": [
"asciidoc",
"asciidoctor",
"shiki",
"syntax-highlight"
],
"license": "MIT",
"devDependencies": {
"@asciidoctor/core": "^2.2.6",
"shiki": "^0.14.2",
"synckit": "^0.8.5",
"typescript": "^4.9.5",
"@types/node": "^18.11.18",
"tsup": "^6.5.0"
},
"dependencies": {
"shiki": "^0.14.2",
"synckit": "^0.8.5"
},
"peerDependencies": {
"@asciidoctor/core": "^2.2.6"
},
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false
}