forked from mineprogramming/innercore-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
70
71
72
73
{
"name": "innercore-api",
"version": "2.4.0b122",
"author": "Nernar",
"description": "Inner Core API Reference",
"repository": {
"type": "git",
"url": "git+https://github.com/Nernar/api.git#master"
},
"bugs": {
"url": "https://github.com/Nernar/api/issues"
},
"homepage": "https://t.me/ntInsideChat",
"license": "GPL-3.0-or-later",
"workspaces": [
"./typedoc-codicon-theme"
],
"private": true,
"scripts": {
"prebuild-theme": "wireit",
"prebuild-declarations": "wireit",
"typedoc": "wireit"
},
"wireit": {
"prebuild-theme": {
"command": "npm run --prefix typedoc-codicon-theme build",
"files": [
"typedoc-codicon-theme/**/*"
],
"output": [
"typedoc-codicon-theme/dist"
]
},
"prebuild-declarations": {
"command": "npx dts-generator --project . --out declarations/core-engine.d.ts --extern ./android.d.ts --exclude **/node_modules/**/*.d.ts --exclude **/declarations/android.d.ts",
"files": [
"tsconfig.json",
"core-engine/**/*.d.ts"
],
"output": [
"declarations/core-engine.d.ts"
]
},
"typedoc": {
"command": "npx typedoc",
"files": [
"typedoc.json",
"tsconfig.json",
"core-engine/**/*.d.ts",
"typedoc-codicon-theme/**/*"
],
"dependencies": [
"prebuild-theme",
"prebuild-declarations"
],
"output": [
"docs"
]
}
},
"devDependencies": {
"@types/dts-generator": "^2.1.11",
"dts-generator": "^3.0.0",
"glob": "^10.4.5",
"tsx": "^4.19.2",
"typedoc-plugin-merge-modules": "^6.0.3",
"wireit": "^0.14.9"
},
"dependencies": {
"html-to-react": "^1.7.0",
"typedoc": "^0.26.11"
}
}