eternal-flame-AD
c830e9ba0d
Some checks failed
Test (production install and build) / production (22.11.0) (push) Successful in 1m59s
Lint / pnpm_install (push) Successful in 2m22s
Publish Docker image / Build (push) Successful in 5m29s
Lint / lint (backend) (push) Successful in 3m45s
Lint / lint (frontend-embed) (push) Successful in 3m4s
Lint / lint (misskey-bubble-game) (push) Failing after -4s
Lint / lint (misskey-js) (push) Failing after -4s
Lint / lint (misskey-reversi) (push) Failing after -3s
Lint / lint (sw) (push) Failing after 12m56s
Lint / lint (frontend-shared) (push) Failing after 15m37s
Lint / lint (frontend) (push) Failing after 19m30s
Lint / typecheck (misskey-js) (push) Successful in 2m14s
Lint / typecheck (sw) (push) Successful in 2m27s
Lint / typecheck (backend) (push) Successful in 2m53s
This reverts commit eef0c895bc
. Cannot
reproduce original issue in question
40 lines
862 B
JSON
40 lines
862 B
JSON
{
|
|
"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.9.0",
|
|
"@typescript-eslint/eslint-plugin": "7.1.0",
|
|
"@typescript-eslint/parser": "7.1.0",
|
|
"execa": "9.5.1",
|
|
"nodemon": "3.1.7",
|
|
"typescript": "5.6.3",
|
|
"esbuild": "0.24.0",
|
|
"glob": "11.0.0"
|
|
},
|
|
"files": [
|
|
"built"
|
|
],
|
|
"dependencies": {
|
|
"crc-32": "1.2.2"
|
|
}
|
|
}
|