Files
xdm 4b121c89f6 refactor(vcs): move vcs to insomnia-vcs (#10427)
refactor(vcs): move vcs to insomnia-vcs

fix: fix comments
2026-08-26 14:37:16 +08:00

37 lines
863 B
JSON

{
"name": "insomnia-vcs",
"version": "13.1.0",
"private": true,
"description": "Insomnia VCS functionalities",
"license": "Apache-2.0",
"author": "Kong <office@konghq.com>",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Kong/insomnia.git",
"directory": "packages/insomnia-vcs"
},
"bugs": {
"url": "https://github.com/kong/insomnia/issues"
},
"homepage": "https://github.com/Kong/insomnia#readme",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"scripts": {
"lint": "eslint . --ext .ts --cache",
"type-check": "tsc --noEmit && tsc -p tsconfig.test.json",
"test": "vitest run"
},
"dependencies": {
"clone": "^2.1.2",
"node-forge": "^1.4.0"
},
"devDependencies": {
"@types/node-forge": "^1.3.14"
}
}