insomnia/packages/insomnia-common/package.json

34 lines
945 B
JSON
Raw Normal View History

{
2022-03-01 16:35:24 +00:00
"private": false,
"name": "insomnia-common",
"version": "2.11.0-beta.0",
"homepage": "https://insomnia.rest",
"description": "Top-level entities and utilities for Insomnia",
"author": "Kong <office@konghq.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Kong/insomnia.git",
"directory": "packages/insomnia-config"
},
"bugs": {
"url": "https://github.com/kong/insomnia/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"bootstrap": "npm run build",
2021-12-10 23:10:20 +00:00
"lint": "eslint . --ext .js,.ts,.tsx --cache",
"lint:fix": "npm run lint -- --fix",
"clean": "tsc --build tsconfig.build.json --clean",
"prebuild": "npm run clean",
"build": "tsc --build tsconfig.build.json"
},
"devDependencies": {
"ajv": "^8.6.2",
2022-03-08 23:05:21 +00:00
"type-fest": "^2.12.0",
"typescript": "^4.5.5",
"typescript-json-schema": "^0.50.1"
}
}