-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "orion-engine",
"version": "1.7.3",
"description": "A simple and lightweight web based game development library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NateTheDev1/orion.git"
},
"keywords": [
"game engine",
"games",
"react-games",
"game development helpers",
"orion"
],
"author": "Nathaniel Richards",
"license": "ISC",
"bugs": {
"url": "https://github.com/NateTheDev1/orion/issues"
},
"homepage": "https://github.com/NateTheDev1/orion#readme",
"devDependencies": {
"prettier": "^2.8.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"react": "^18.2.0"
}
}