-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 988 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
{
"name": "matrix-remarkable-bot",
"version": "0.1.0",
"author": "abmantis",
"license": "Apache-2.0",
"description": "A matrix bot to send stuff to the reMarkable cloud",
"main": "out/index.js",
"dependencies": {
"matrix-bot-sdk": "beta",
"puppeteer": "^13.3.2",
"remarkable-typescript": "github:abmantis/reMarkable-typescript#patch-1",
"uuid": "^8.3.2",
"yaml": "^1.10.2"
},
"scripts": {
"build": "tsc",
"lint": "tslint --project ./tsconfig.json -t stylish",
"bot": "cd out && node index.js",
"upgrade-remarkable-typescript": "npm upgrade reMarkable-typescript && cd node_modules/remarkable-typescript && npm install && npm run prepare",
"setup": "npm install && npm run build && npm run upgrade-remarkable-typescript"
},
"devDependencies": {
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}