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.12",
"@types/seedrandom": "3.0.8",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"esbuild": "0.27.3",
"execa": "9.6.1",
"nodemon": "3.1.11"
},
"files": [
"built"
],
"dependencies": {
"eventemitter3": "5.0.4",
"matter-js": "0.20.0",
"seedrandom": "3.0.5"
}
}
|