-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.89 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@moderrkowo/jsgl",
"displayName": "JSGL",
"description": "Client-side JavaScript library for creating web 2D games. Focusing at objective game.",
"version": "1.0.9",
"publisher": "Tymon Woźniak",
"main": "./dist/index.js",
"homepage": "https://jsglreference.pl/",
"bugs": {
"url": "https://github.com/Moderrek/JSGL/issues",
"email": "tymon.student@gmail.com"
},
"author": "Tymon Woźniak",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Moderrek/JSGL.git"
},
"keywords": [
"game-development",
"javascript",
"javascript-game",
"2d-game",
"game-objects",
"graphics",
"canvas",
"html",
"animation",
"library"
],
"scripts": {
"build:types": "tsc",
"build:docs": "typedoc src/index.ts --name \"JSGL\" --includeVersion --hideGenerator --logLevel Error",
"build": "npm run build:prod && npm run build:types && npm run build:docs",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/node": "^18.15.3",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@webpack-cli/generators": "^3.0.1",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typedoc": "^0.23.28",
"typescript": "^4.9.5",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"wepack-cli": "^0.0.1-security"
}
}