-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.9 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.9 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "docs",
"private": true,
"description": "The website for the IsaacScript monorepo.",
"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.9.2",
"@docusaurus/preset-classic": "3.9.2",
"@mdx-js/react": "3.1.1",
"clsx": "2.1.1",
"docusaurus-theme-search-typesense": "0.26.0",
"prism-react-renderer": "2.4.1",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/tsconfig": "3.9.2",
"@docusaurus/types": "3.9.2",
"@eslint/eslintrc": "3.3.5",
"@types/node": "25.5.0",
"@zamiell/typedoc-plugin-not-exported": "0.3.0",
"complete-common": "2.21.0",
"complete-node": "16.4.0",
"typedoc": "0.28.17",
"typedoc-plugin-markdown": "4.10.0",
"typedoc-plugin-rename": "1.1.1",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1"
}
}