forked from InfiniBrains/Awesome-GameDev-Resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.44 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
74
75
76
77
78
79
80
81
82
{
"name": "awesome-programming-course",
"version": "0.0.1",
"description": "Awesome GameDev Resources",
"main": "placeholder.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "placeholder",
"release": "npx -y semantic-release",
"prestyle": "cmake -S. -BbuildStyle -DENABLE_TEST_COVERAGE=ON -DENABLE_STANDALONE=OFF -DENABLE_DOCUMENTATION=OFF",
"style": "cmake --build buildStyle --target fix-format",
"prebuildall": "cmake -S. -Bbuild -DENABLE_TEST_COVERAGE=OFF -DENABLE_STANDALONE=ON -DENABLE_DOCUMENTATION=OFF",
"buildall": "cmake --build build -j20",
"generate:docs": "CI=1 cmake -S. -BbuildDocs -DENABLE_TEST_COVERAGE=OFF -DENABLE_STANDALONE=ON -DENABLE_DOCUMENTATION=ON",
"prebuild:docs": "CI=1 npm run generate:docs",
"build:docs": " CI=1 cmake --build buildDocs --target GenerateDocs",
"preserve": "npm run build:docs",
"serve": "npx http-serve site",
"serve:dev": "mkdocs serve",
"prelist:all": "cmake -S. -Bbuild",
"list:all": "cmake --build build --target help",
"git:pull": "git pull"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InfiniBrains/Awesome-GameDev-Resources.git"
},
"keywords": [
"C++",
"CPP",
"Game Patterns",
"Game Programming",
"GameDev",
"WASM",
"EMSCRIPTEN",
"Game Engine"
],
"author": "InfiniBrains",
"license": "MIT",
"bugs": {
"url": "https://github.com/InfiniBrains/Awesome-GameDev-Resources/issues"
},
"homepage": "https://infinibrains.github.io/InfiniBrains/Awesome-GameDev-Resources",
"dependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"moxygen": "^0.8.0",
"rimraf": "^3.0.2"
},
"release": {
"branches": [
"master",
"main"
],
"repositoryUrl": "https://github.com/InfiniBrains/Awesome-GameDev-Resources",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
],
"@semantic-release/github"
]
}
}