-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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": "phaser-playing-card",
"version": "1.1.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "webpack serve --mode development",
"dev": "webpack",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/codemadhu/phaser-playing-card.git"
},
"keywords": [
"phaser cards",
"phaser playing cards",
"playing cards",
"card deck",
"plying card deck"
],
"author": "Madhukar Thapa Magar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemadhu/phaser-playing-card/issues"
},
"homepage": "https://codemadhu.github.io/phaser-playing-card/",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"json-loader": "^0.5.7",
"ts-loader": "^9.4.2",
"typescript": "^5.0.3",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"dependencies": {
"phaser": "^3.60.0",
"typescript": "^5.2.2"
},
"files": [
"lib/**/*"
]
}