forked from tani/asciidoctor-shiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"private": false,
"author": "TANIGUCHI Masaya",
"description": "asciidoctor.js plugin for syntax highlight with shiki",
"license": "MIT",
"publishConfig": [
{
"registry": "https://registry.npmjs.org/"
},
{
"registry": "https://npm.pkg.github.com/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ink-feather-org/asciidoctor-shiki"
},
"name": "@ink-feather-org/asciidoctor-shiki",
"version": "1.0.0",
"main": "dist/src/index.js",
"sideEffects": false,
"types": "dist/src/index.d.ts",
"keywords": [
"asciidoc",
"asciidoctor",
"shiki",
"syntax-highlight"
],
"scripts": {
"prepublishOnly": "pnpm run build && npm-multi-publish",
"postpublish": "npm-multi-publish",
"test": "pnpm run build && node dist/test/test.js",
"build": "tsc && tsc --declaration --emitDeclarationOnly",
"clean": "shx rm -rf dist docs"
},
"devDependencies": {
"@asciidoctor/core": "^2.2.6",
"@types/deasync": "^0.1.2",
"shx": "^0.3.4",
"typescript": "^4.6.3",
"npm-multi-publish": "^2.2.0"
},
"dependencies": {
"deasync": "^0.1.26",
"shiki": "^0.10.1",
"tslib": "^2.3.1"
}
}