forked from MunGell/ZotServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 957 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
{
"name": "zotserver",
"version": "1.0.5",
"description": "Zotero Local Server for third-party integrations",
"private": true,
"repository": "https://github.com/MunGell/ZotServer",
"author": "Shmavon Gazanchyan <[email protected]> (https://github.com/MunGell)",
"license": "MIT",
"scripts": {
"build": "esbuild src/main.ts --bundle --outfile=chrome/content/zotserver/main.js",
"watch": "esbuild src/main.ts --bundle --outfile=chrome/content/zotserver/main.js --watch",
"pub": "7z a -tzip package.zip install.rdf chrome.manifest chrome/",
"lint": "tsc -noEmit && eslint src",
"test": "npm run lint",
"release": "npm run build && npm run pub"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"esbuild": "^0.14.15",
"eslint": "^8.8.0",
"typescript": "^4.5.5"
}
}