forked from Dominic-DallOsto/zotero-api-endpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.89 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
{
"name": "zotero-api-endpoint",
"version": "0.0.5",
"description": "Provides an HTTP server endpoint for interacting with Zotero",
"scripts": {
"lint": "eslint . --ext .ts --fix --cache --cache-location .eslintcache/",
"prebuild": "npm run lint",
"update-schemas": "bash -c 'for file in ./content/endpoints/*.ts ; do ./node_modules/.bin/ts-json-schema-generator -f tsconfig.json --path \"$file\" --out \"./resource/schema/$(basename ${file/\\.ts/.json})\" ; done'",
"build": "npm run update-schemas && tsc --noEmit && node esbuild.js",
"postbuild": "zotero-plugin-zipup build zotero-api-endpoint",
"release": "zotero-plugin-release",
"postversion": "git push --follow-tags",
"test": "act -j test"
},
"repository": {
"type": "git",
"url": "https://github.com/Dominic-DallOsto/zotero-api-endpoint.git"
},
"author": {
"name": "",
"email": "dominicd7@hotmail.com"
},
"bugs": {
"url": "https://github.com/Dominic-DallOsto/zotero-api-endpoint/issues"
},
"homepage": "https://github.com/Dominic-DallOsto/zotero-api-endpoint",
"dependencies": {
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"ajv": "^8.9.0",
"esbuild": "^0.14.10",
"eslint": "^8.6.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.5.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"ts-json-schema-generator": "^0.97.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"zotero-plugin": "^1.4.1"
},
"xpi": {
"name": "Api Endpoint for Zotero",
"updateLink": "https://github.com/Dominic-DallOsto/zotero-api-endpoint/releases/download/v{version}/zotero-api-endpoint-{version}.xpi",
"releaseURL": "https://github.com/Dominic-DallOsto/zotero-api-endpoint/releases/download/release/",
"bootstrapped": true
}
}