-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.15 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
{
"name": "pujo-puyo-core",
"author": "Lumi Pakkanen",
"version": "0.2.0",
"description": "Core engine for a Puyo Puyo clone",
"license": "MIT",
"main": "dist/index",
"repository": {
"type": "git",
"url": "git+https://github.com/frostburn/pujo-puyo-core.git"
},
"bugs": {
"url": "https://github.com/frostburn/pujo-puyo-core/issues"
},
"homepage": "https://github.com/frostburn/pujo-puyo-core#readme",
"keywords": [
"Puzzle",
"Game",
"Puyo",
"Puyo Puyo",
"Mean Bean Machine"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/frostburn"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"devDependencies": {
"@types/jsdom": "^16.2.15",
"@types/minimist": "^1.2.3",
"@types/node": "20.4.6",
"bun-types": "latest",
"gts": "^5.0.1",
"typescript": "~5.1.6"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc --p tsconfig-index.json",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
}
}