-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (35 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (35 loc) · 1.22 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
{
"name": "php-minecraft-mods-info",
"version": "1.0.0",
"description": "提供我們的Minecraft伺服器,模組同步用與伺服器狀態資訊的API",
"homepage": "https://github.com/chyuaner/php-minecraft-server-info#readme",
"bugs": {
"url": "https://github.com/chyuaner/php-minecraft-server-info/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chyuaner/php-minecraft-server-info.git"
},
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "public/index.php",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"apidoc:build": "php scripts/generate-apidoc.php && apidoc -i public/ -o public/docs/api -c apidoc.config.js -t ./node_modules/@gitawego/apidoc-theme/template",
"build": "npm run docs:build && npm run apidoc:build",
"php:dev": "php -S 127.0.0.1:8000 -t public",
"doc": "npm run build",
"dev": "npm run build && npm run php:dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"apidoc": "^1.2.0",
"vitepress": "^2.0.0-alpha.17",
"vue": "^3.5.13"
},
"dependencies": {
"@gitawego/apidoc-theme": "github:chyuaner/apidoc-theme"
}
}