-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@vole-engine/core",
"version": "0.0.46",
"description": "Tiny 2D game engine",
"repository": "https://github.com/dinomintstudio/vole",
"author": "ivanjermakov",
"bugs": {
"url": "https://github.com/dinomintstudio/vole/issues"
},
"type": "module",
"license": "MIT",
"readme": "README.md",
"private": false,
"keywords": [
"vole",
"game-engine",
"game-engine-2d"
],
"exports": {
"./*": "./*.js"
},
"scripts": {
"build:dev": "tsc",
"build:prod": "tsc -p tsconfig.prod.json",
"package": "node import-transform.ts && cp package.json dist",
"clean": "rm -r dist",
"test": "jest --watchAll",
"ci": "jest --ci"
},
"devDependencies": {
"@jest/globals": "29.5.0",
"@types/jasmine": "4.3.1",
"@types/node": "18.16.3",
"jest": "29.5.0",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"dependencies": {
"rxjs": "7.8.1"
}
}