forked from NickRimmer/insomnia-plugin-request-navigator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.44 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.44 KB
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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "insomnia-plugin-request-navigator-forked",
"version": "0.3.2",
"insomnia": {
"name": "request-navigator-fork",
"displayName": "Tabs: Requests Navigator (Fork)",
"description": "Lost in Requests? Let's Navigate!",
"unlisted": false,
"images": {
"icon": "request-navigator-icon-sm.png"
},
"publisher": {
"name": "Franklin Castellanos",
"icon": "https://avatars.githubusercontent.com/u/84517879?v=4"
}
},
"main": "dist/index.js",
"author": "Nick Rimmer <NickRimmer@debugging.ninja>",
"contributors": [
"Franklin Castellanos <castelldev@gmail.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/castelldev/insomnia-tabs-plugin.git",
"directory": ""
},
"bugs": {
"url": "https://github.com/castelldev/insomnia-tabs-plugin/issues"
},
"scripts": {
"build-npm": "node npm/generate-package.js && copyfiles -u 2 ./npm/content/* ./dist/",
"build": "esr esbuild.ts && npm run build-npm",
"watch-trigger": "esr esbuild.ts && npm run install",
"watch": "npm run build-npm && npm-watch watch-trigger",
"clean": "rimraf dist",
"publish": "npm run build && cd dist && npm publish",
"publish-dry": "npm run build && cd dist && npm publish --dry-run",
"install": "copyfiles -u 1 ./dist/* %appdata%/insomnia/plugins/plugin-request-navigator-fork",
"install-dev": "copyfiles -u 1 ./dist/* %appdata%/insomnia-app/plugins/insomnia-plugin-request-navigator-fork",
"lint": "eslint --ext .ts,.tsx .",
"lint-fix": "eslint --ext .ts,.tsx --fix ."
},
"watch": {
"watch-trigger": {
"patterns": [
"src"
],
"extensions": "ts,tsx,scss"
}
},
"dependencies": {
"@types/react": "^16.14.5",
"@types/react-dom": "^16.9.12",
"nedb": "^1.8.0",
"prop-types": "^15.5.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-sortable-hoc": "^2.0.0"
},
"devDependencies": {
"@types/nedb": "^1.8.13",
"@types/node": "^20.3.3",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"copyfiles": "^2.4.1",
"esbuild": "^0.18.11",
"esbuild-runner": "^2.2.2",
"esbuild-sass-plugin": "^2.10.0",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"npm-watch": "^0.11.0",
"request": "^2.88.0",
"rimraf": "^5.0.1",
"sass": "^1.63.6",
"semver": "^7.3.8"
}
}