-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"author": {
"name": "Ivan Alonso",
"url": "https://www.neverbot.com"
},
"name": "okinawa.js",
"main": "okinawa.js",
"description": "Javascript 2D game engine",
"version": "3.1.18",
"keywords": [
"okinawajs",
"javascript",
"game-engine",
"html5-game-development",
"canvas"
],
"engines": {},
"bugs": "https://github.com/okinawa-dev/okinawa.js/issues",
"license": "",
"homepage": "https://github.com/okinawa-dev/okinawa.js",
"repository": {
"type": "git",
"url": "git://github.com/okinawa-dev/okinawa.js.git"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"babel-loader": "^9.1.3",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {},
"scripts": {
"lint": "npx eslint . --ext js,json",
"lint:quiet": "npx eslint . --ext js,json --quiet",
"lint:fix": "npx eslint . --ext js,json --fix",
"build": "npm run build:dev",
"build:dev": "npx webpack --config .webpack.config.js --mode=development",
"build:production": "npx webpack --config .webpack.config.js --mode=production"
},
"contributors": [
"Ivan Alonso <[email protected]> (https://neverbot.com)"
]
}