insomnia/package.json

72 lines
2.7 KiB
JSON
Raw Normal View History

2016-03-16 05:49:42 +00:00
{
"name": "insomnia",
2016-03-20 20:42:27 +00:00
"private": true,
2016-07-07 20:10:55 +00:00
"version": "1.0.0",
"author": "Kong <office@konghq.com>",
"description": "Insomnia is a cross-platform REST client, built on top of Electron.",
"license": "Apache-2.0",
2020-04-26 21:08:50 +00:00
"repository": "https://github.com/kong/insomnia",
"bugs": {
"url": "https://github.com/kong/insomnia/issues"
2016-07-18 19:44:46 +00:00
},
"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"
],
2016-07-18 19:44:46 +00:00
"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",
:rocket: 8.6.1 (#7014) * Bump app version to 8.6.1 * feat(unit-tests): Unit test reordering (#7020) * re-orderable test suites * re-orderable tests * fix ts * Use db methods for sorting * sort suites and unit tests in inso * fix suite rename * Fixes https://github.com/Kong/insomnia/issues/7011 (#7012) * Fixes https://github.com/Kong/insomnia/issues/7009 (#7010) * chore: edit changelog process [INS-3456] (#7001) * fix(workspace): Add default name for when creating a workspace (#7046) * Add default name for when creating a design/collection * workspace update and creation * fix filter history keys not being valid selectors (#7040) * remove invalid wide css prop (#7041) * feat(environment): update environments icons (#7050) * update environments icons * fix workspace name * fix one line editor being scrollable (#7059) * change 8.0 to 8 (#7061) * Cleanup page containers and add hint container in the page (#7060) * feat(pane-tabs): Consistent styles for tabs (#7062) * response/request pane tab counts * tab dropdown colors * fix updates to db leading to errors in loader fetchers (#7033) * feat(command-palette): add button to open the command palette (#7064) * add button for quick search * update button styles in project * make it look good with gh stars * fix ts issue * changelog --------- Co-authored-by: Jack Kavanagh <3679927+jackkav@users.noreply.github.com> Co-authored-by: James Gatz <jamesgatzos@gmail.com> Co-authored-by: Jeroen Van den Berghe <vandenberghe.jeroen@gmail.com> Co-authored-by: Filipe Freire <livrofubia@gmail.com>
2024-02-06 12:16:54 +00:00
"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",
2024-08-28 13:27:11 +00:00
"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"
},
2016-03-16 05:49:42 +00:00
"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",
2024-09-30 23:38:40 +00:00
"esbuild": "^0.24.0",
"esbuild-runner": "^2.2.2",
"eslint": "^8.57.0",
"eslint-config-helpers": "^1.2.0",
2021-07-22 23:04:56 +00:00
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-html": "^8.0.0",
2024-01-29 12:49:20 +00:00
"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"
}
2021-08-25 19:52:08 +00:00
}