-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.42 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "rmapi-js",
"version": "6.0.0",
"description": "JavaScript implementation of the reMarkable 1.5 api",
"repository": "[email protected]:erikbrinkman/rmapi-js.git",
"author": "Erik Brinkman <[email protected]>",
"license": "MIT",
"keywords": [
"remarkable"
],
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/rmapi-js.esm.min.js",
"files": [
"./dist/**/*.js",
"./dist/**/*.d.ts"
],
"scripts": {
"doc": "typedoc",
"fmt": "prettier --cache --write 'src/*.ts' '*.{js,json}'",
"lint": "tsc && eslint --cache 'src/*.ts' && typedoc --emit none",
"export": "tsc -p tsconfig.build.json && bun build src/index.ts --minify --outfile dist/rmapi-js.esm.min.js",
"prepack": "bun lint && bun test --coverage && bun export"
},
"dependencies": {
"base64-js": "^1.5.1",
"json-stable-stringify": "^1.1.1",
"jtd-ts": "^0.1.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@types/bun": "^1.1.10",
"@types/json-stable-stringify": "^1.0.36",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-spellcheck": "^0.0.20",
"eslint-plugin-tsdoc": "^0.3.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
}
}