-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.amxxpack.json
More file actions
71 lines (71 loc) 路 2.24 KB
/
Copy path.amxxpack.json
File metadata and controls
71 lines (71 loc) 路 2.24 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
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
{
"compiler": {
"version": "1.9",
"addons": ["cstrike"]
},
"thirdparty": {
"dependencies": [
{
"name": "reapi",
"url": "https://github.com/s1lentq/reapi/releases/download/5.21.0.252/reapi-bin-5.21.0.252.zip"
},
{
"name": "amxx-modding-kit",
"url": "https://github.com/Hedgefog/amxx-modding-kit/archive/refs/tags/1.0.4.zip",
"strip": 1,
"filter": [
"util/**",
"weapons/**",
"entities/**/entity_fire*",
"api/assets/**",
"api/custom-entities/**",
"api/custom-weapons/**",
"api/player-cosmetics/**",
"api/player-model/**",
"api/shops/**"
]
}
]
},
"include": [
"./.compiler/include",
"./.thirdparty/reapi/addons/amxmodx/scripting/include",
"./.thirdparty/amxx-modding-kit/api/assets/include",
"./.thirdparty/amxx-modding-kit/api/custom-entities/include",
"./.thirdparty/amxx-modding-kit/api/custom-weapons/include",
"./.thirdparty/amxx-modding-kit/api/player-cosmetics/include",
"./.thirdparty/amxx-modding-kit/api/player-model/include",
"./.thirdparty/amxx-modding-kit/api/shops/include",
"./.thirdparty/amxx-modding-kit/entities/include",
"./.thirdparty/amxx-modding-kit/weapons/include",
"./.thirdparty/amxx-modding-kit/util"
],
"input": {
"scripts": [
{ "dir": "./src/scripts", "output": { "dir": "snowwars", "flat": false } },
{ "dir": "./.thirdparty/amxx-modding-kit/api", "output": { "dir": "./amxx-modding-kit", "flat": true } },
{ "dir": "./.thirdparty/amxx-modding-kit/entities", "output": { "dir": "./amxx-modding-kit", "flat": true } },
{ "dir": "./.thirdparty/amxx-modding-kit/weapons", "output": { "dir": "./amxx-modding-kit", "flat": true } }
],
"include": "./src/include",
"assets": "./assets"
},
"output": {
"base": "./dist/build",
"plugins": "./addons/amxmodx/plugins",
"scripts": "./addons/amxmodx/scripting",
"include": "./addons/amxmodx/scripting/include",
"assets": "."
},
"rules": {
"flatCompilation": false
},
"cli": {
"templates": {
"context": {
"PLUGIN_VERSION": "1.0.0",
"PLUGIN_AUTHOR": "Hedgehog Fog"
}
}
}
}