-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "@dreamirl/dreamengine",
"version": "1.4.2",
"description": "A simple and fast 2D engine based on PIXI",
"main": "./src/index.ts",
"devDependencies": {
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"cross-env": "^5.2.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.1.0",
"pixi.js": "^6.5.1",
"prettier": "^2.2.0",
"pretty-quick": "^3.1.1"
},
"peerDependencies": {
"howler": "^2.1.1",
"local-storage": "^2.0.0",
"pixi.js": "^6.5.1"
},
"scripts": {
"format": "prettier --config .prettierrc.json --ignore-path .prettierignore --write \"**/*.{js,json,ts,tsx,md,html}\"",
"test": "echo \"Error: no test specified this is a TODO\" && exit 1",
"watch": "echo TODO",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dreamirl/Dreamengine.git"
},
"keywords": [
"webgl",
"2D",
"PIXI",
"canvas",
"js",
"games"
],
"author": "Inateno",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dreamirl/Dreamengine/issues"
},
"homepage": "https://github.com/Dreamirl/Dreamengine#readme",
"dependencies": {
"@types/howler": "^2.2.7",
"pixi-filters": "^4.1.6",
"querystring": "^0.2.1",
"typescript": "^4.7.4"
}
}