summaryrefslogtreecommitdiff
path: root/packages/misskey-reversi/package.json
blob: a8ef69c9714967e88ad3504327dd64a55001857c (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
{
	"type": "module",
	"name": "misskey-reversi",
	"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 './**/*.{js,jsx,ts,tsx}'",
		"typecheck": "tsc --noEmit",
		"lint": "pnpm typecheck && pnpm eslint"
	},
	"devDependencies": {
		"@types/node": "22.13.9",
		"@typescript-eslint/eslint-plugin": "8.26.0",
		"@typescript-eslint/parser": "8.26.0",
		"execa": "9.5.2",
		"nodemon": "3.1.9",
		"typescript": "5.8.2",
		"esbuild": "0.25.0",
		"glob": "11.0.1"
	},
	"files": [
		"built"
	],
	"dependencies": {
		"crc-32": "1.2.2"
	}
}