-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.39 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.39 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
{
"name": "@canalplus/readme.doc",
"type": "module",
"version": "0.6.0",
"description": "Readme's an Extremely Accessible Documentation MakEr",
"bin": {
"readme.doc": "build/index.js"
},
"main": "build/index.js",
"scripts": {
"build": "npm run generateVersionFile && tsc",
"check:types": "tsc --noEmit --project .",
"clean": "rimraf doc-build",
"doc": "node build/index.js --clean --input doc --output doc-build -p `npm run --silent getVersion`",
"fmt": "prettier --write .",
"generateVersionFile": "echo \"export default \\\"$(npm --silent run getVersion)\\\";\" > src/version.ts",
"getVersion": "node -e \"console.log(require('./package.json').version)\"",
"lint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "https://github.com/canalplus/README.git"
},
"author": "peaberberian",
"license": "WTFPL",
"dependencies": {
"cheerio": "1.1.2",
"highlight.js": "11.11.1",
"html-entities": "2.6.0",
"markdown-it": "14.1.0",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.7.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.4",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"types": "./build/index.d.ts"
}