-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.58 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
65
66
67
68
{
"name": "tropy-plugin-csl",
"version": "1.1.0",
"productName": "CSL",
"description": "Export to CSL/JSON.",
"icon": "icon.svg",
"main": "index.js",
"scripts": {
"test": "electron-mocha --renderer test",
"lint": "eslint --color src test",
"build": "rollup -c rollup.config.js",
"watch": "rollup -c -w rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tropy/tropy-plugin-csl.git"
},
"keywords": [
"tropy",
"csl",
"zotero"
],
"author": "Sylvester Keil <sylvester@keil.or.at>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/tropy/tropy-plugin-csl/issues"
},
"homepage": "https://github.com/tropy/tropy-plugin-csl#readme",
"hooks": {
"export": true
},
"options": [
{
"field": "file",
"label": "Save as",
"hint": "Default output file",
"type": "save-file"
},
{
"field": "prompt",
"label": "Always ask?",
"hint": "Always ask where to save the output file.",
"type": "boolean",
"default": false
},
{
"field": "clipboard",
"label": "Copy to clipboard?",
"type": "boolean",
"default": false
},
{
"field": "template",
"label": "Template",
"type": "template"
}
],
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"electron": "^18.2.2",
"electron-mocha": "^11.0.2",
"eslint": "^8.14.0",
"rollup": "^2.72.1",
"rollup-plugin-license": "^2.7.0"
}
}