summaryrefslogtreecommitdiff
path: root/packages/misskey-bubble-game/package.json
blob: 0f04e5d5b3151b215c38d71e6440d4a7e09d654c (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",
			"default": "./built/index.js"
		},
		"./*": {
			"import": "./built/*",
			"types": "./built/*",
			"default": "./built/*"
		}
	},
	"scripts": {
		"build": "node ./build.js",
		"watch": "nodemon -w package.json -e json --exec \"node ./build.js --watch\"",
		"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
		"typecheck": "tsgo --noEmit",
		"lint": "pnpm typecheck && pnpm eslint"
	},
	"devDependencies": {
		"@types/matter-js": "0.20.2",
		"@types/node": "24.10.2",
		"@types/seedrandom": "3.0.8",
		"@typescript-eslint/eslint-plugin": "8.49.0",
		"@typescript-eslint/parser": "8.49.0",
		"esbuild": "0.27.1",
		"execa": "9.6.1",
		"nodemon": "3.1.11"
	},
	"files": [
		"built"
	],
	"dependencies": {
		"eventemitter3": "5.0.1",
		"matter-js": "0.20.0",
		"seedrandom": "3.0.5"
	}
}