-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.87 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
72
73
{
"name": "@starweb-libs/engine",
"description": "A lightweight 2D game engine for the browser",
"author": "Mason L'Etoile",
"version": "0.0.8",
"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",
"tsdown": "^0.22.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsdown",
"prepare": "npm run build"
},
"files": [
"dist"
],
"exports": {
"./assets.js": {
"types": "./dist/assets.d.mts",
"@starweb-libs/source": "./src/assets.ts",
"import": "./dist/assets.mjs"
},
"./canvas.js": {
"types": "./dist/canvas.d.mts",
"@starweb-libs/source": "./src/canvas.ts",
"import": "./dist/canvas.mjs"
},
"./input/keyboard.js": {
"types": "./dist/input/keyboard.d.mts",
"@starweb-libs/source": "./src/input/keyboard.ts",
"import": "./dist/input/keyboard.mjs"
},
"./input/pointer.js": {
"types": "./dist/input/pointer.d.mts",
"@starweb-libs/source": "./src/input/pointer.ts",
"import": "./dist/input/pointer.mjs"
},
"./update.js": {
"types": "./dist/update.d.mts",
"@starweb-libs/source": "./src/update.ts",
"import": "./dist/update.mjs"
},
"./validate.js": {
"types": "./dist/validate.d.mts",
"@starweb-libs/source": "./src/validate.ts",
"import": "./dist/validate.mjs"
},
"./bootstrap.js": {
"types": "./dist/bootstrap.d.mts",
"@starweb-libs/source": "./src/bootstrap.ts",
"import": "./dist/bootstrap.mjs"
}
}
}