-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.32 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
60
{
"name": "@sransara/astro-adocx",
"version": "0.1.2",
"type": "module",
"description": "Astro integration for Asciidoctor",
"repository": {
"type": "git",
"url": "git+https://github.com/sransara/astro-adocx.git"
},
"license": "MIT",
"author": {
"name": "sransara",
"email": "hi@sransara.com",
"url": "https://sransara.com"
},
"exports": {
"./*": {
"import": "./dist/esm/*.js",
"require": "./dist/cjs/*.cjs",
"default": "./dist/esm/*.js"
}
},
"imports": {
"#src/*": {
"import": "./dist/esm/*.js",
"require": "./dist/cjs/*.cjs",
"default": "./dist/esm/*.js"
}
},
"scripts": {
"compile-patches": "node ./scripts/compile-rb.js ./src/patches",
"build": "node ./scripts/build.js",
"tsc": "tsc",
"clean": "rm -rf dist"
},
"devDependencies": {
"@types/node": "^20.14.10",
"asciidoctor": "^3.0.4",
"astro": "^4.10.2",
"opal-compiler": "^3.0.0",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.5.3",
"vite": "^5.3.1"
},
"peerDependencies": {
"asciidoctor": "^3.0.4",
"astro": "^4.10.2",
"vite": "^5.3.1"
},
"dependencies": {
"app-root-path": "^3.1.0"
},
"keywords": [
"asciidoctor",
"withastro",
"astro-adocx",
"plugin"
]
}