-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "asteroids.ts",
"version": "1.0.1",
"description": "Classic Asteroids game clone",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build --base=/asteroids.ts/",
"serve": "vite preview",
"postinstall": "husky install",
"clean": "rimraf ./dist",
"deploy": "gh-pages -d ./dist",
"build-n-deploy": "run-s clean build deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/i9or/asteroids.ts.git"
},
"keywords": [
"html5",
"game",
"canvas",
"typescript",
"asteroids"
],
"author": "Igor <dont@bzzr.me> (https://ignorethis.page/)",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/i9or/asteroids.ts/issues"
},
"homepage": "https://github.com/i9or/asteroids.ts#readme",
"devDependencies": {
"gh-pages": "^3.1.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3",
"vite": "^2.0.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
}
}