Sharkey/package.json

46 lines
1.1 KiB
JSON
Raw Normal View History

2021-05-12 17:29:17 +03:00
{
2021-05-16 12:22:19 +03:00
"name": "misskey-js",
2021-11-11 15:49:25 +02:00
"version": "0.0.10",
2021-05-16 12:22:19 +03:00
"description": "Misskey SDK for JavaScript",
"main": "./built/index.js",
"types": "./built/index.d.ts",
"scripts": {
"build": "npm run tsc",
"tsc": "tsc",
"tsd": "tsd",
2021-07-30 07:01:52 +03:00
"api": "npx api-extractor run --local --verbose",
"api-prod": "npx api-extractor run --verbose",
2021-07-29 19:18:19 +03:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
2021-06-25 03:46:40 +03:00
"jest": "jest --coverage --detectOpenHandles",
2021-05-16 12:22:19 +03:00
"test": "npm run jest && npm run tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misskey-dev/misskey.js.git"
},
"devDependencies": {
2022-01-01 14:52:42 +02:00
"@microsoft/api-extractor": "^7.19.3",
"@types/jest": "^27.4.0",
"@types/node": "17.0.5",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"eslint": "8.6.0",
"jest": "^27.4.5",
2021-05-16 12:22:19 +03:00
"jest-fetch-mock": "^3.0.3",
2021-06-25 03:12:18 +03:00
"jest-websocket-mock": "^2.2.1",
2022-01-01 14:52:42 +02:00
"mock-socket": "^9.0.8",
"ts-jest": "^27.1.2",
"ts-node": "10.4.0",
"tsd": "^0.19.1",
"typescript": "4.5.4"
2021-05-16 12:22:19 +03:00
},
"files": [
"built"
],
"dependencies": {
"autobind-decorator": "^2.4.0",
"eventemitter3": "^4.0.7",
"reconnecting-websocket": "^4.4.0"
}
2021-05-12 17:29:17 +03:00
}