-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.78 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.78 KB
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
{
"name": "@kyonax/org2html",
"version": "1.0.2",
"description": "Production-ready Org-mode to HTML parser with Vue 3 component support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"org2html": "./dist/cli/index.mjs"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"lint": "eslint .",
"test:coverage": "vitest --coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyonax/org2html.git"
},
"bugs": {
"url": "https://github.com/kyonax/org2html/issues"
},
"homepage": "https://github.com/kyonax/org2html#readme",
"keywords": [
"org-mode",
"parser",
"html",
"vue3",
"static-site-generator"
],
"author": {
"name": "Cristian D. Moreno - Kyonax",
"url": "https://github.com/kyonax"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kyonax"
},
"license": "GPL-3.0-only",
"files": [
"dist",
"templates"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"commander": "^11.1.0",
"dompurify": "^3.0.6",
"fast-glob": "^3.3.2",
"jsdom": "^23.0.1",
"probe-image-size": "^7.2.3",
"shiki": "^0.14.5",
"slugify": "^1.6.6"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.0",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"sharp": "^0.33.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.49.0",
"vitest": "^4.0.8"
},
"optionalDependencies": {
"sharp": "^0.33.0"
},
"engines": {
"node": ">=18.0.0"
}
}