-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 2.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "astro-asciidoc",
"version": "0.0.3",
"description": "Support AsciiDoc pages in Astro",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./types": "./dist/types.d.ts",
"./src/index.js": "./src/index.ts"
},
"main": "./dist/index.cjs",
"files": [
"dist",
"src"
],
"workspaces": [
"example"
],
"scripts": {
"astro": "npm exec --workspace=example -- astro",
"dev": "npm run dev --workspace=example",
"start": "npm run dev",
"lint": "eslint --ext .ts,.js,.astro .",
"prebuild": "npm run lint",
"build": "unbuild",
"ci": "npm run build && npm run build --workspace=example",
"prepare": "husky",
"release": "release-it --npm.skipChecks"
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
},
"git": {
"requireCleanWorkingDir": false
},
"npm": {
"publish": true
},
"github": {
"release": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/shishkin/astro-asciidoc.git"
},
"homepage": "https://github.com/shishkin/astro-asciidoc",
"keywords": [
"astro",
"astro-integration",
"withastro",
"asciidoc",
"asciidoctor",
"adoc"
],
"author": "Sergey Shishkin <[email protected]>",
"license": "MIT",
"peerDependencies": {
"astro": "^2.8.0 || ^3.0.0 || ^4.0.0",
"vite": "^4.3.9 || ^5.0.0 || ^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@release-it/conventional-changelog": "10.0.0",
"@types/eslint": "9.6.1",
"@astrojs/check": "0.9.4",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"astro": "4.16.18",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.7",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"release-it": "18.1.1",
"typescript": "5.7.3",
"unbuild": "3.2.0"
},
"dependencies": {
"@asciidoctor/core": "3.0.4"
}
}