-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 766 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 766 Bytes
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
{
"name": "rimu",
"author": "Stuart Rackham <srackham@gmail.com>",
"version": "11.4.0",
"description": "Readable text to HTML markup language",
"keywords": [
"rimu",
"markup",
"asciidoc",
"markdown"
],
"license": "MIT",
"homepage": "https://srackham.github.io/rimu/",
"main": "lib/cjs/rimu.js",
"types": "lib/cjs/rimu.d.ts",
"module": "lib/esm/rimu.js",
"bin": {
"rimuc": "lib/cjs/rimuc.js"
},
"files": [
"LICENSE",
"README.md",
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/srackham/rimu.git"
},
"devDependencies": {
"@types/node": "^22.10.7",
"html-validator-cli": "^7.0.1",
"rollup": "^4.30.1",
"terser": "^5.37.0",
"typescript": "^5.7.3"
}
}