-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 963 Bytes
/
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
{
"name": "@vole-engine/draw",
"version": "0.0.1",
"description": "Vole engine module for HTML5 canvas drawing",
"repository": "https://github.com/dinomintstudio/vole-draw",
"author": "ivanjermakov",
"bugs": {
"url": "https://github.com/dinomintstudio/vole/issues"
},
"type": "module",
"license": "MIT",
"private": false,
"keywords": [
"vole",
"game-engine",
"game-engine-2d",
"html5",
"canvas"
],
"scripts": {
"build:dev": "tsc",
"build:prod": "tsc -p tsconfig.prod.json && cp package.json dist",
"watch": "tsc -w",
"clean": "rm -r dist",
"test": "jest --watchAll",
"ci": "jest --ci"
},
"devDependencies": {
"@types/node": "~18.16.3",
"@types/jasmine": "~4.3.1",
"typescript": "~5.0.4",
"ts-node": "~10.9.1",
"jest": "~29.5.0",
"@jest/globals": "~29.5.0",
"@swc/core": "~1.3.56",
"@swc/jest": "~0.2.26"
},
"dependencies": {
"@vole-engine/core": "0.0.36"
}
}