This repository has been archived by the owner on Dec 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.83 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
{
"name": "typedoc-plugin-extra-footer",
"version": "1.0.4",
"description": "Add extra content to the footer of TypeDoc-generated docs.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!/dist/**.test.d.ts",
"!/dist/**.test.js",
"!/dist/vitest.config.d.ts",
"!/dist/vitest.config.js"
],
"engines": {
"node": "^18 || ^20 || >=22"
},
"scripts": {
"clean": "rimraf dist/",
"compile": "tsc --project tsconfig.json && tsc --project tsconfig.test.json",
"doc": "npm run compile && typedoc && replace-in-files --string '=\"assets/' --replacement '=\"/assets/' docs/404.html",
"format": "eslint --fix *.ts *.mjs && prettier . --write",
"lint": "eslint --report-unused-disable-directives --max-warnings=0 *.ts *.mjs && prettier . --check",
"prepack": "npm run clean && npm run compile",
"test": "npm run compile && vitest --run",
"test-all": "npm run compile && npm run lint && npm run test && npm run doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/8hobbies/typedoc-plugin-extra-footer.git"
},
"keywords": [
"typedoc-plugin"
],
"author": "8 Hobbies, LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/8hobbies/typedoc-plugin-extra-footer/issues"
},
"homepage": "https://typedoc-extra-footer.8hob.io",
"devDependencies": {
"@8hobbies/eslint-conf-baseline": "^6.0.0",
"@8hobbies/typedoc-plugin-404": "^2.3.0",
"@8hobbies/typedoc-plugin-plausible": "^1.1.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.1",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.1",
"replace-in-files-cli": "^3.0.0",
"rimraf": "^6.0.1",
"typescript": ">=5.4.5 <5.5",
"vitest": "^2.1.6"
},
"peerDependencies": {
"typedoc": "^0.25.13"
}
}