eternal-flame-AD
63a98f3b41
Some checks failed
Lint / pnpm_install (pull_request) Successful in 1m30s
Lint / pnpm_install (push) Successful in 1m9s
Publish Docker image / Build (push) Successful in 4m58s
Publish Docker image / Build (pull_request) Successful in 4m6s
Test (production install and build) / production (22.11.0) (pull_request) Successful in 1m21s
Test (production install and build) / production (22.11.0) (push) Successful in 1m1s
Lint / lint (backend) (pull_request) Successful in 2m1s
Lint / lint (frontend) (pull_request) Successful in 2m19s
Test (backend) / unit (22.11.0) (pull_request) Failing after 7m47s
Test (backend) / unit (22.11.0) (push) Failing after 7m57s
Lint / lint (frontend-shared) (pull_request) Successful in 2m20s
Lint / lint (frontend-embed) (pull_request) Successful in 2m34s
Lint / lint (misskey-bubble-game) (pull_request) Successful in 2m13s
Lint / lint (misskey-reversi) (pull_request) Successful in 2m25s
Lint / lint (misskey-js) (pull_request) Successful in 2m27s
Lint / lint (sw) (pull_request) Successful in 2m14s
Lint / typecheck (misskey-js) (pull_request) Successful in 1m24s
Lint / typecheck (backend) (pull_request) Successful in 1m56s
Lint / typecheck (sw) (pull_request) Successful in 1m29s
Lint / lint (backend) (push) Successful in 2m12s
Lint / lint (frontend) (push) Successful in 2m8s
Lint / lint (frontend-embed) (push) Successful in 2m6s
Lint / lint (frontend-shared) (push) Successful in 2m7s
Lint / lint (misskey-bubble-game) (push) Successful in 2m8s
Lint / lint (misskey-js) (push) Successful in 2m9s
Lint / lint (misskey-reversi) (push) Failing after 1m37s
Lint / lint (sw) (push) Successful in 2m16s
Lint / typecheck (backend) (push) Successful in 2m4s
Lint / typecheck (misskey-js) (push) Successful in 1m31s
Lint / typecheck (sw) (push) Successful in 1m53s
Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
64 lines
1.7 KiB
JSON
64 lines
1.7 KiB
JSON
{
|
|
"type": "module",
|
|
"name": "misskey-js",
|
|
"version": "2024.11.0-yumechinokuni.6",
|
|
"description": "Misskey SDK for JavaScript",
|
|
"license": "MIT",
|
|
"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\"",
|
|
"tsd": "tsd",
|
|
"api": "pnpm api-extractor run --local --verbose",
|
|
"api-prod": "pnpm api-extractor run --verbose",
|
|
"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "pnpm typecheck && pnpm eslint",
|
|
"jest": "jest --coverage --detectOpenHandles",
|
|
"test": "pnpm jest && pnpm tsd",
|
|
"update-autogen-code": "pnpm --filter misskey-js-type-generator generate && ncp generator/built/autogen src/autogen"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/misskey-dev/misskey.git",
|
|
"directory": "packages/misskey-js"
|
|
},
|
|
"devDependencies": {
|
|
"@microsoft/api-extractor": "7.47.11",
|
|
"@swc/jest": "0.2.37",
|
|
"@types/jest": "29.5.14",
|
|
"@types/node": "22.9.0",
|
|
"@typescript-eslint/eslint-plugin": "7.17.0",
|
|
"@typescript-eslint/parser": "7.17.0",
|
|
"jest": "29.7.0",
|
|
"jest-fetch-mock": "3.0.3",
|
|
"jest-websocket-mock": "2.5.0",
|
|
"mock-socket": "9.3.1",
|
|
"ncp": "2.0.0",
|
|
"nodemon": "3.1.7",
|
|
"execa": "9.5.1",
|
|
"tsd": "0.31.2",
|
|
"typescript": "5.6.3",
|
|
"esbuild": "0.24.0",
|
|
"glob": "11.0.0"
|
|
},
|
|
"files": [
|
|
"built"
|
|
],
|
|
"dependencies": {
|
|
"@simplewebauthn/types": "11.0.0",
|
|
"eventemitter3": "5.0.1",
|
|
"reconnecting-websocket": "4.4.0"
|
|
}
|
|
}
|