-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
61
62
63
64
65
66
67
68
69
{
"name": "docs",
"private": true,
"description": "The website for the IsaacScript monorepo.",
"keywords": [],
"homepage": "https://isaacscript.github.io/",
"bugs": {
"url": "https://github.com/IsaacScript/isaacscript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IsaacScript/isaacscript.git"
},
"license": "GPL-3.0",
"author": "Zamiell",
"scripts": {
"build": "tsx --tsconfig ./scripts/tsconfig.json ./scripts/build.mts",
"clear": "docusaurus clear",
"deploy": "tsx --tsconfig ./scripts/tsconfig.json ./scripts/deploy.mts",
"docusaurus": "docusaurus",
"lint": "tsx --tsconfig ./scripts/tsconfig.json ./scripts/lint.mts",
"serve": "docusaurus serve",
"start": "docusaurus start",
"swizzle": "docusaurus swizzle",
"typecheck": "tsc",
"write-heading-ids": "docusaurus write-heading-ids",
"write-translations": "docusaurus write-translations"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@docusaurus/core": "^3.6.3",
"@docusaurus/preset-classic": "^3.6.3",
"@mdx-js/react": "^3.1.0",
"clsx": "^2.1.1",
"docusaurus-theme-search-typesense": "^0.22.0",
"prism-react-renderer": "^2.4.0",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "^3.6.3",
"@docusaurus/module-type-aliases": "^3.6.3",
"@docusaurus/tsconfig": "^3.6.3",
"@docusaurus/types": "^3.6.3",
"@eslint/eslintrc": "^3.2.0",
"@types/glob": "^8.1.0",
"@types/node": "^22.10.1",
"@zamiell/typedoc-plugin-not-exported": "^0.3.0",
"complete-common": "^1.0.1",
"complete-node": "^1.7.4",
"glob": "^11.0.0",
"typedoc": "^0.27.3",
"typedoc-plugin-markdown": "^4.3.1",
"typedoc-plugin-rename": "^1.1.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
}
}