forked from piqnt/stage.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.08 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
{
"name": "stage-js",
"version": "1.0.0-dev",
"description": "2D HTML5 Rendering and Layout",
"homepage": "http://piqnt.com/stage.js/",
"author": "Ali Shakiba (http://shakiba.me/stage.js)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/shakiba/stage.js.git"
},
"keywords": [
"html5",
"game",
"rendering",
"layout",
"engine",
"2d",
"canvas",
"cross-platform",
"web",
"mobile"
],
"type": "module",
"main": "./dist/stage.umd.cjs",
"module": "./dist/stage.js",
"exports": {
".": {
"import": "./dist/stage.js",
"require": "./dist/stage.umd.cjs"
}
},
"types": "./index.d.ts",
"files": [
"src/",
"dist/",
"test/"
],
"dependencies": {
"is": "^3.3.0"
},
"devDependencies": {
"expect.js": "^0.3.1",
"glob": "^10.2.6",
"mocha": "^6.2.3",
"sandboxed-module": "^2.0.0",
"sinon": "^9.0.2",
"vite": "^4.3.8",
"vite-plugin-pages": "^0.30.1"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "mocha test/*.js"
}
}