-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.76 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
{
"name": "insomnia-plugin-prettyprint-request-response",
"version": "0.0.11",
"license": "MIT",
"author": {
"name": "Gilles Zunino",
"email": "gzunino@akakani.com",
"url": "https://gilles.zunino.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/gilleszunino/insomnia-plugin-prettyprint-request-response"
},
"keywords": [
"pretty-print",
"prettier",
"insomnia",
"plugin"
],
"insomnia": {
"name": "prettyprint-request-response",
"displayName": "Pretty print request / response",
"description": "Pretty print request / response in various formats",
"images": {
"icon": "images/html5.svg",
"cover": "images/pasted-result-ok.png"
},
"publisher": {
"name": "Gilles Zunino"
},
"applications": {
"designer": "*",
"core": "*",
"cli": "*"
}
},
"main": "dist/index.js",
"files": [
"dist",
"images/html5.svg",
"images/pasted-result-ok.png"
],
"scripts": {
"build:dev": "npx webpack --config webpack.dev.js",
"build:prod": "npx webpack --config webpack.prod.js",
"build:tsdx": "tsdx build --target node --tsconfig ./tsconfig.json",
"build": "npm run build:dev",
"prepublishOnly": "npm run build:prod"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"nunjucks": "3.2.4"
},
"devDependencies": {
"@types/node": "20.5.9",
"@types/nunjucks": "3.2.3",
"clean-webpack-plugin": "4.0.0",
"simple-nunjucks-loader": "3.2.0",
"terser-webpack-plugin": "5.3.9",
"ts-loader": "9.4.4",
"tsdx": "0.14.1",
"typescript": "5.2.2",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-merge": "5.9.0",
"webpack-node-externals": "3.0.0"
},
"peerDependencies": {}
}