insomnia/packages/insomnia-common/package.json

33 lines
914 B
JSON
Raw Normal View History

{
"private": true,
"name": "insomnia-common",
2022-02-08 16:37:36 +00:00
"version": "2.5.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",
"type-fest": "^1.0.2",
"typescript-json-schema": "^0.50.1"
}
}