forked from Kong/insomnia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.75 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
69
70
71
{
"name": "insomnia",
"private": true,
"version": "1.0.0",
"author": "Kong <[email protected]>",
"description": "Insomnia is a cross-platform REST client, built on top of Electron.",
"license": "Apache-2.0",
"repository": "https://github.com/kong/insomnia",
"bugs": {
"url": "https://github.com/kong/insomnia/issues"
},
"homepage": "https://github.com/kong/insomnia#readme",
"engines": {
"node": ">=20.16.0 <22",
"npm": ">=10"
},
"workspaces": [
"packages/insomnia-testing",
"packages/insomnia",
"packages/insomnia-inso",
"packages/insomnia-smoke-test",
"packages/insomnia-sdk"
],
"scripts": {
"dev": "npm start -w insomnia",
"lint": "npm run lint --workspaces --if-present",
"type-check": "npm run type-check --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint:markdown": "npx markdownlint-cli2 \"**/*.md\" \"#**/node_modules\" \"#**/CHANGELOG.md\"",
"clean": "git clean -dfX",
"install-libcurl-electron": "node_modules/.bin/node-pre-gyp install --directory node_modules/@getinsomnia/node-libcurl --update-binary --runtime=electron --target=$target",
"inso-start": "npm start -w insomnia-inso",
"inso-package": "npm run build -w insomnia-inso && npm run package -w insomnia-inso",
"watch:app": "PLAYWRIGHT=1 npm run build:main.min.js -w insomnia && npm run start:dev-server -w insomnia",
"app-build": "npm run build -w insomnia",
"app-package": "npm run package -w insomnia",
"test:smoke:dev": "npm run test:dev -w insomnia-smoke-test -- --project=Smoke",
"test:smoke:build": "npm run test:build -w insomnia-smoke-test -- --project=Smoke",
"test:smoke:package": "npm run test:package -w insomnia-smoke-test -- --project=Smoke",
"changelog-image": "esr ./scripts/changelog-image/changelog-image.ts",
"download-all-npm-plugins": "esr ./scripts/download-all-npm-plugins.ts"
},
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/eslint": "^8.56.7",
"@types/har-format": "^1.2.15",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.4",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"esbuild": "^0.24.0",
"esbuild-runner": "^2.2.2",
"eslint": "^8.57.0",
"eslint-config-helpers": "^1.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"tslib": "2.0.1",
"type-fest": "^4.15.0",
"typescript": "^5.6.2",
"vitest": "^2.0.4"
},
"dependencies": {
"@types/decompress": "^4.2.7",
"decompress": "^4.2.1"
}
}