-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "raylib-umka",
"description": "Umka bindings for raylib.",
"version": "0.1.0",
"private": true,
"scripts": {
"generator": "node generator",
"build": "cmake -B build -S . && cmake --build build",
"prebuild": "npm run generator",
"test": "ctest --verbose --test-dir build",
"pretest": "npm run build",
"start": "build/bin/raylib-umka",
"prestart": "npm run build",
"web": "mkdir -p build && cd build && emcmake cmake .. -DPLATFORM=Web -DCMAKE_BUILD_TYPE=Release && emmake make",
"publish": "npm run web && gh-pages --src \"*.html\" -d build/bin",
"clean": "rm -rf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobLoach/raylib-umka.git"
},
"files": [
"include"
],
"keywords": [
"raylib"
],
"author": "Rob Loach (https://robloach.net)",
"license": "zlib/libpng",
"bugs": {
"url": "https://github.com/RobLoach/raylib-umka/issues"
},
"homepage": "https://github.com/RobLoach/raylib-umka",
"devDependencies": {
"@raylib/api": "~4.5.0",
"gh-pages": "^4.0.0"
}
}