-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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": "marked-aozora",
"version": "1.2.2",
"description": "Add Aozora Bunko style ruby support to marked.js",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"debug": "MARKED_AOZORA_DEBUG_VERBOSE=1 ts-node-esm ./src/debug.ts",
"example": "ts-node-esm ./src/example.ts",
"build": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [
"marked",
"markdown",
"plugin",
"furigana"
],
"repository": {
"type": "github",
"url": "git+https://github.com/JanStanleyWatt/marked-aozora.git"
},
"bugs": {
"url": "https://github.com/JanStanleyWatt/marked-aozora/issues"
},
"author": "Jan Stanley Watt",
"license": "Apache-2.0",
"peerDependencies": {
"marked": "^14.1.3"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-redos": "^4.4.5",
"eslint-plugin-security": "^3.0.1",
"jest": "^29.7.0",
"marked": "^14.1.3",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/lib",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">= 18"
}
}