-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "blaze-2d",
"version": "0.0.1",
"author": "Freddie Nelson <freddie0208@hotmail.com> (https://freddienelson.co.uk)",
"description": "A fast and simple WebGL 2 2D game engine written in TypeScript",
"keywords": [
"webgl",
"webgl2",
"2d",
"2d-game",
"2d-game-engine",
"physics",
"game",
"gamedev",
"game-engine",
"engine",
"typescript"
],
"homepage": "https://github.com/freddie-nelson/blaze-2d",
"repository": {
"type": "git",
"url": "git+https://github.com/freddie-nelson/blaze-2d"
},
"bugs": {
"email": "freddie0208@hotmail.com",
"url": "https://github.com/freddie-nelson/blaze-2d/issues"
},
"files": [
"lib/src",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "shx rm -rf lib",
"lib:build": "npm run clean && tsc && npm run lib:postbuild",
"lib:dev": "npm run clean && tsc-watch --onSuccess 'npm run lib:postbuild'",
"lib:postbuild": "node replaceShaders.js && node replaceCSS.js",
"dev": "webpack watch --config dev/webpack.config.js",
"dev:production": "npm run lib:dev & npm run dev \n wait; npm run dev:kill",
"dev:kill": "kill %1",
"docs:deps": "cd ./docs && yarn",
"docs:build": "yarn docs:deps && mkdir -p docs/docs && yarn docs:examples && cd ./docs && yarn build",
"docs:serve": "yarn docs:deps && mkdir -p docs/docs && cd ./docs && yarn start",
"docs:examples": "yarn example:all && node ./buildDocsExamples.js",
"example:build": "node buildExample.js",
"example:serve": "node runExample.js",
"example:all": "node buildAllExamples.js",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint . --ext .ts",
"prepare": "npm run lib:build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format"
},
"dependencies": {
"gl-matrix": "^3.4.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"css-loader": "^6.5.1",
"eslint": "^8.4.1",
"live-server": "^1.2.1",
"nodemon": "^2.0.13",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"sass": "^1.45.0",
"sass-loader": "^12.4.0",
"shx": "^0.3.3",
"style-loader": "^3.3.1",
"ts-loader": "^8.1.0",
"ts-node": "^10.2.1",
"tsc": "^2.0.3",
"tsc-watch": "^4.5.0",
"typescript": "^4.2.4",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0"
},
"license": "MIT",
"engines": {
"node": ">=14"
}
}