forked from kittykatattack/ga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.2 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
{
"name": "ga",
"version": "0.0.5",
"description": "The world's tiniest, cutest and funnest game engine",
"homepage": "https://github.com/kittykatattack/ga#readme",
"private": true,
"directories": {
"sources": "src",
"example": "examples",
"tutorial": "tutorials"
},
"scripts": {
"doc": "typedoc"
},
"keywords": [
"Typescript",
"Javascript",
"Game Engine"
],
"author": {
"name": "Rex van der Spuy",
"url": "https://github.com/kittykatattack"
},
"contributors": [
{
"name": "Rex van der Spuy",
"url": "https://github.com/kittykatattack"
},
{
"name": "Bartolomeo Sorrentino",
"email": "[email protected]",
"url": "https://github.com/bsorrentino"
}
],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/kittykatattack/ga/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bsorrentino/ga"
},
"engines": {
"npm": "7",
"node": "14"
},
"workspaces": ["./packages/*"],
"multipleStaticFileCopier": [
{
"origin": "src",
"destination": "dist"
},
{
"origin": "src/assets",
"destination": "dist/assets"
}
]
}