2016-03-16 05:49:42 +00:00
|
|
|
{
|
2017-11-26 20:45:40 +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",
|
2021-05-12 12:31:07 +00:00
|
|
|
"author": "Kong <office@konghq.com>",
|
2020-08-10 23:46:07 +00:00
|
|
|
"description": "Insomnia is a cross-platform REST client, built on top of Electron.",
|
2023-10-25 16:16:23 +00:00
|
|
|
"license": "Apache-2.0",
|
2020-04-26 21:08:50 +00:00
|
|
|
"repository": "https://github.com/kong/insomnia",
|
2017-11-26 20:45:40 +00:00
|
|
|
"bugs": {
|
2020-08-10 23:46:07 +00:00
|
|
|
"url": "https://github.com/kong/insomnia/issues"
|
2016-07-18 19:44:46 +00:00
|
|
|
},
|
2020-08-10 23:46:07 +00:00
|
|
|
"homepage": "https://github.com/kong/insomnia#readme",
|
2023-06-29 16:02:02 +00:00
|
|
|
"engines": {
|
2024-08-30 20:57:18 +00:00
|
|
|
"node": ">=20.16.0 <22",
|
2024-04-11 12:49:58 +00:00
|
|
|
"npm": ">=10"
|
2023-01-05 13:17:34 +00:00
|
|
|
},
|
2023-08-09 22:14:16 +00:00
|
|
|
"workspaces": [
|
|
|
|
"packages/insomnia-testing",
|
|
|
|
"packages/insomnia",
|
|
|
|
"packages/insomnia-inso",
|
2024-04-12 14:24:14 +00:00
|
|
|
"packages/insomnia-smoke-test",
|
|
|
|
"packages/insomnia-sdk"
|
2023-08-09 22:14:16 +00:00
|
|
|
],
|
2016-07-18 19:44:46 +00:00
|
|
|
"scripts": {
|
2024-07-09 12:06:55 +00:00
|
|
|
"dev": "npm start -w insomnia",
|
2023-08-09 22:14:16 +00:00
|
|
|
"lint": "npm run lint --workspaces --if-present",
|
2024-07-18 13:06:28 +00:00
|
|
|
"type-check": "npm run type-check --workspaces --if-present",
|
2023-08-09 22:14:16 +00:00
|
|
|
"test": "npm run test --workspaces --if-present",
|
2024-02-06 12:16:54 +00:00
|
|
|
"lint:markdown": "npx markdownlint-cli2 \"**/*.md\" \"#**/node_modules\" \"#**/CHANGELOG.md\"",
|
2023-08-09 22:14:16 +00:00
|
|
|
"clean": "git clean -dfX",
|
2024-07-09 12:06:55 +00:00
|
|
|
"install-libcurl-electron": "node_modules/.bin/node-pre-gyp install --directory node_modules/@getinsomnia/node-libcurl --update-binary --runtime=electron --target=$target",
|
2024-07-18 13:06:28 +00:00
|
|
|
"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",
|
2024-07-09 12:06:55 +00:00
|
|
|
"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",
|
2022-05-02 10:25:55 +00:00
|
|
|
"changelog-image": "esr ./scripts/changelog-image/changelog-image.ts",
|
2023-08-09 22:14:16 +00:00
|
|
|
"download-all-npm-plugins": "esr ./scripts/download-all-npm-plugins.ts"
|
2020-05-14 22:54:07 +00:00
|
|
|
},
|
2016-03-16 05:49:42 +00:00
|
|
|
"devDependencies": {
|
2024-04-04 12:48:56 +00:00
|
|
|
"@types/chai": "^4.3.14",
|
|
|
|
"@types/eslint": "^8.56.7",
|
2024-01-29 12:00:24 +00:00
|
|
|
"@types/har-format": "^1.2.15",
|
2024-04-04 12:48:56 +00:00
|
|
|
"@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",
|
2023-07-12 10:14:18 +00:00
|
|
|
"esbuild-runner": "^2.2.2",
|
2024-04-04 12:48:56 +00:00
|
|
|
"eslint": "^8.57.0",
|
2023-06-29 16:02:02 +00:00
|
|
|
"eslint-config-helpers": "^1.2.0",
|
2021-07-22 23:04:56 +00:00
|
|
|
"eslint-plugin-filenames": "^1.3.2",
|
2024-04-04 12:48:56 +00:00
|
|
|
"eslint-plugin-html": "^8.0.0",
|
2024-01-29 12:49:20 +00:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2022-02-02 16:21:25 +00:00
|
|
|
"eslint-plugin-json": "^3.1.0",
|
2024-04-04 12:48:56 +00:00
|
|
|
"eslint-plugin-react": "^7.34.1",
|
2023-07-10 21:54:42 +00:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2024-04-04 12:48:56 +00:00
|
|
|
"eslint-plugin-simple-import-sort": "^12.0.0",
|
2023-08-09 22:14:16 +00:00
|
|
|
"tslib": "2.0.1",
|
2024-04-04 12:48:56 +00:00
|
|
|
"type-fest": "^4.15.0",
|
2024-09-27 13:52:34 +00:00
|
|
|
"typescript": "^5.6.2",
|
2024-07-25 12:37:15 +00:00
|
|
|
"vitest": "^2.0.4"
|
2024-08-23 03:18:04 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@types/decompress": "^4.2.7",
|
|
|
|
"decompress": "^4.2.1"
|
Sidebar code mirror interactions (#2433)
* Lifting path clicked up to sidebar root
* Abstracting out path click to story (and app)
* Adding click to scroll, updating sidebar components
* Scroll fix for sidebar
* Cleaning up log
* PR feedback
* PR Feedback, fix schemas & request body rendering
* PR feedback & cleanup
* Prop value checking, selection positioning
* Pulling remote import
* Styled components into insomnia-app, obj destructuring, typing
* Refactoring item path mapping
* Abstracting the mapping of specs for position, bumping down styled components version.
* Directly passing ... rest args initial work
* Pulling logs, removing array concatenation
* Pulling click handler out of render method
* Rolling position mapping into scroll positining method
* Opening up type, could be number/string/array
* Update package-lock.json
* Grabbing height from window, typing API vars, checking path
* Creating scroll method dedicated to design mode
* Moving typing of spec related content to Props def.
* Type checking on sections, invalid section component
2020-08-03 17:57:12 +00:00
|
|
|
}
|
2021-08-25 19:52:08 +00:00
|
|
|
}
|