-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "tropy-plugin-example",
"productName": "Example Plugin",
"version": "1.0.0-beta.1",
"description": "A Tropy plugin for doing something!",
"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-example.git"
},
"keywords": [
"tropy",
"plugin"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/tropy/tropy-plugin-example/issues"
},
"homepage": "https://github.com/tropy/tropy-plugin-example#readme",
"hooks": {
"export": true,
"import": true
},
"options": [
{
"field": "clipboard",
"label": "Example: Copy exported data to clipboard?",
"type": "boolean",
"default": false
},
{
"field": "file",
"type": "save-file",
"label": "Example: Save export as"
}
],
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.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"
},
"dependencies": {}
}