-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
35 lines (35 loc) · 945 Bytes
/
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
{
"name": "raylib-cpp",
"version": "5.5.0",
"description": "raylib-cpp: C++ Object-Oriented Wrapper for raylib",
"main": "index.js",
"private": true,
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"scripts": {
"prebuild": "cmake -S . -B build",
"build": "cmake --build build",
"test": "build/tests/raylib_cpp_test",
"pretest": "npm run build",
"deploy": "gh-pages -d docs",
"predeploy": "npm run docs",
"docs": "doxygen projects/Doxygen/Doxyfile",
"predocs": "git submodule update --init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobLoach/raylib-cpp.git"
},
"author": "Rob Loach (https://robloach.net)",
"license": "Zlib",
"bugs": {
"url": "https://github.com/RobLoach/raylib-cpp/issues"
},
"homepage": "https://github.com/RobLoach/raylib-cpp#readme",
"devDependencies": {
"gh-pages": "^6.1.1"
}
}