FoundKey/package.json

40 lines
914 B
JSON
Raw Normal View History

2021-05-12 14:29:17 +00:00
{
"name": "misskey-js",
"version": "0.0.0",
"description": "Misskey SDK for JavaScript",
"main": "./built/index.js",
"types": "./built/index.d.ts",
"scripts": {
"build": "npm run tsc",
"tsc": "tsc",
"tsd": "tsd",
2021-05-14 04:49:40 +00:00
"jest": "jest",
"test": "npm run jest && npm run tsd"
2021-05-12 14:29:17 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/misskey-dev/misskey.js.git"
},
"devDependencies": {
2021-05-14 04:49:40 +00:00
"@types/jest": "^26.0.23",
2021-05-12 14:29:17 +00:00
"@types/node": "14.14.x",
2021-05-14 04:49:40 +00:00
"jest": "^26.6.3",
2021-05-16 02:11:05 +00:00
"jest-fetch-mock": "^3.0.3",
2021-05-14 04:49:40 +00:00
"jest-websocket-mock": "^2.2.0",
"mock-socket": "^9.0.3",
"ts-jest": "^26.5.6",
2021-05-12 14:29:17 +00:00
"ts-node": "9.1.x",
"tsd": "^0.14.0",
"typescript": "4.2.x"
},
"files": [
"built"
2021-05-14 02:46:39 +00:00
],
"dependencies": {
"@vue/reactivity": "^3.0.11",
"autobind-decorator": "^2.4.0",
"eventemitter3": "^4.0.7",
"reconnecting-websocket": "^4.4.0"
}
2021-05-12 14:29:17 +00:00
}