-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "@starweb-libs/engine",
"description": "A lightweight 2D game engine for the browser",
"author": "Mason L'Etoile",
"version": "0.0.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/starweb-libs/engine.git"
},
"homepage": "https://github.com/starweb-libs/engine#readme",
"bugs": { "url": "https://github.com/starweb-libs/engine/issues" },
"keywords": ["game-engine", "canvas", "2d", "typescript", "browser", "starweb"],
"type": "module",
"devDependencies": { "typescript": "~6.0.2" },
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build"
},
"files": ["dist"],
"exports": {
"./assets.js": {
"types": "./dist/assets.d.ts",
"import": "./dist/assets.js"
},
"./canvas.js": {
"types": "./dist/canvas.d.ts",
"import": "./dist/canvas.js"
},
"./input/keyboard.js": {
"types": "./dist/input/keyboard.d.ts",
"import": "./dist/input/keyboard.js"
},
"./input/pointer.js": {
"types": "./dist/input/pointer.d.ts",
"import": "./dist/input/pointer.js"
},
"./update.js": {
"types": "./dist/update.d.ts",
"import": "./dist/update.js"
},
"./validate.js": {
"types": "./dist/validate.d.ts",
"import": "./dist/validate.js"
}
}
}