-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"name": "vite-plugin-asciidoc",
"version": "0.0.2",
"author": "Kirill Romanov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Djaler/vite-plugin-asciidoc"
},
"keywords": [
"asciidoctor",
"asciidoc",
"adoc",
"vite"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json && copyfiles -u 1 \"src/html/runtime/**\" dist",
"prerelease": "npm run lint && npm run build",
"release": "standard-version --preset @djaler/standard",
"release:github": "conventional-github-releaser --preset @djaler/standard",
"publish": "npm run build && clean-publish"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"packageManager": "pnpm@6.20.3",
"dependencies": {
"asciidoctor": "^2.2.5",
"html-loader": "3.0.1"
},
"peerDependencies": {
"vite": "^2.0.0"
},
"devDependencies": {
"@djaler/conventional-changelog-standard": "1.2.0",
"@djaler/eslint-config-typescript": "0.0.7",
"@types/node": "16.11.6",
"clean-publish": "3.4.3",
"conventional-github-releaser": "3.1.5",
"copyfiles": "2.4.1",
"eslint": "7.32.0",
"eslint-import-resolver-typescript": "2.5.0",
"lint-staged": "11.2.6",
"rimraf": "3.0.2",
"simple-git-hooks": "2.7.0",
"standard-version": "9.3.2",
"typescript": "4.4.4",
"vite": "2.6.13"
},
"simple-git-hooks": {
"pre-commit": "pnpx lint-staged"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
}
}