-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "trilium-etapi",
"version": "0.2.0",
"description": "An easy to use api for Trilium ETAPI.",
"homepage": "https://github.com/rauenzi/trilium-etapi",
"repository": {
"type": "git",
"url": "https://github.com/rauenzi/trilium-etapi.git"
},
"keywords": ["trilium", "notes", "api", "etapi", "rest"],
"main": "./lib/esm/index.js",
"exports": {
".": {
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
},
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
}
}
},
"files": [
"lib/"
],
"scripts": {
"build": "rm -rf lib && tsc -p tsconfig.json && tsc -p tsconfig.esm.json && node scripts/fixbuild.mjs",
"test": "mocha",
"debug": "ts-node tests/debug.ts",
"docs": "typedoc --entryPointStrategy expand --plugin typedoc-plugin-rename-defaults",
"lint": "eslint src tests"
},
"author": "Zerebos",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"chai": "^4.3.7",
"eslint": "^8.47.0",
"mocha": "^10.2.0",
"nock": "^13.3.3",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typedoc-plugin-rename-defaults": "^0.6.5",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/node": "^20.5.1",
"phin": "^3.7.0"
},
"mocha": {
"extension": [
"ts"
],
"spec": "tests/*.spec.ts",
"require": "ts-node/register"
},
"engines": {
"node": ">=16"
}
}