-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "playlib",
"version": "0.7.1",
"description": "A game framework for making website games that implements Canvas API, and has many useful functions and classes.",
"main": "src/playlib.ts",
"directories": {
"test": "testing",
"example": "examples",
"lib": "src",
"build": "bin"
},
"scripts": {
"dev": "tsc --watch",
"compile": "tsc",
"publish": "tsc && git add * && git commit -m \"Updates for playlib!\" && git pull && git push",
"push": "tsc && git add * && git commit -m \"Updates for playlib!\" && git pull && git push",
"postinstall": "npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikeedev/playlib.git"
},
"keywords": [
"gamedev",
"playlib",
"game_framework",
"nikeedev",
"html",
"html5",
"javascript",
"canvas"
],
"author": "nikeedev",
"license": "MIT",
"bugs": {
"url": "https://github.com/nikeedev/playlib/issues"
},
"homepage": "https://github.com/nikeedev/playlib#readme",
"devDependencies": {
"@types/node": "22.5.5",
"typescript": "5.6.2"
}
}