-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "insomnia-plugin-uu-sync",
"version": "1.0.3",
"author": "Bogan <franc.bohuslav@gmail.com>",
"description": "Import manager and table viewer for Insomnia",
"license": "MIT",
"scripts": {
"build": "tsc --project tsconfig.json --extendedDiagnostics",
"watch": "tsc --watch --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/francbohuslav/insomnia-plugin-uu-sync.git"
},
"keywords": [
"insomnia",
"plugin",
"git",
"uu"
],
"bugs": {
"url": "https://github.com/francbohuslav/insomnia-plugin-uu-sync/issues"
},
"main": "dist/index.js",
"insomnia": {
"name": "uu-sync",
"displayName": "uuSync Plugin",
"description": "This plugin allows users to easily import/export workspace to a configured file.",
"images": {
"icon": "icon.png"
},
"applications": {
"core": "*"
}
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"homepage": "https://github.com/francbohuslav/insomnia-plugin-uu-sync#readme",
"devDependencies": {
"@types/node": "^14.14.41",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"typescript": "^4.2.4"
}
}