summaryrefslogtreecommitdiff
path: root/packages/misskey-bubble-game/package.json
blob: 522aa18d1d596c2cbb09aecdc218138d66c7134c (plain)
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
{
	"type": "module",
	"name": "misskey-bubble-game",
	"version": "0.0.1",
	"main": "./built/index.js",
	"types": "./built/index.d.ts",
	"exports": {
		".": {
			"import": "./built/index.js",
			"types": "./built/index.d.ts"
		},
		"./*": {
			"import": "./built/*",
			"types": "./built/*"
		}
	},
	"scripts": {
		"build": "node ./build.js",
		"watch": "nodemon -w package.json -e json --exec \"node ./build.js --watch\"",
		"eslint": "eslint --quiet \"{src,test,js,@types}/**/*.{js,jsx,ts,tsx,vue}\" --cache",
		"typecheck": "tsc --noEmit",
		"lint": "pnpm typecheck && pnpm eslint"
	},
	"devDependencies": {
		"@types/matter-js": "0.19.8",
		"@types/seedrandom": "3.0.8",
		"@types/node": "22.15.2",
		"@typescript-eslint/eslint-plugin": "8.31.0",
		"@typescript-eslint/parser": "8.31.0",
		"nodemon": "3.1.10",
		"execa": "9.5.2",
		"typescript": "5.8.3",
		"esbuild": "0.25.3",
		"glob": "11.0.2"
	},
	"files": [
		"built"
	],
	"dependencies": {
		"eventemitter3": "5.0.1",
		"matter-js": "0.20.0",
		"seedrandom": "3.0.5"
	}
}