-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.04 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
{
"name": "kippy",
"version": "0.7.5",
"description": "Kippy 2D web game engine for JS",
"keywords": [
"kippy",
"game-engine",
"game",
"2d",
"renderer",
"graphics",
"physics",
"library",
"framework",
"engine"
],
"homepage": "https://github.com/nguyenphuminh/kippy#readme",
"bugs": {
"url": "https://github.com/nguyenphuminh/kippy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nguyenphuminh/kippy.git"
},
"license": "Apache-2.0",
"author": "nguyenphuminh",
"type": "module",
"main": "./dist/bundle.min.js",
"scripts": {
"build": "rm -r ./dist & npx rollup -c"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"rollup": "^4.57.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"files": [
"dist/",
"index.d.ts",
"index.js",
"LICENSE",
"README.md"
],
"types": "dist/types/index.d.ts"
}