-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 894 Bytes
/
package.json
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
{
"name": "maychan-misskey",
"version": "1.1.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node ./dist/index.js",
"dev": "pnpm build && cross-env NODE_ENV=development pnpm start",
"build": "tsc && tsc-alias",
"build:watch": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "tai-cha",
"license": "MPL-2.0",
"devDependencies": {
"@types/async-retry": "^1.4.5",
"@types/node": "^20.2.3",
"cross-env": "^7.0.3",
"tsconfig-paths": "^4.2.0",
"typescript-transform-paths": "^3.4.6"
},
"dependencies": {
"@enjoyjs/node-mecab": "^0.5.0",
"async-retry": "^1.3.3",
"dotenv": "^16.3.1",
"mfm-js": "^0.24.0",
"misskey-js": "^2024.2.0",
"tsc-alias": "^1.8.6",
"typescript": "^5.3.3"
}
}