types/package.json

29 lines
700 B
JSON
Raw Normal View History

2021-09-26 05:21:51 -07:00
{
2022-06-30 15:41:04 -07:00
"name": "@hyper-tuner/types",
"description": "HyperTuner common TypeScript types",
2022-05-03 13:12:38 -07:00
"version": "0.3.2",
2021-09-26 05:21:51 -07:00
"license": "MIT",
"repository": {
"type": "git",
2022-06-30 15:41:04 -07:00
"url": "https://github.com/hyper-tuner/types"
2021-09-26 05:21:51 -07:00
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "tsc --watch",
2021-09-26 07:03:38 -07:00
"lint": "tsc && eslint --max-warnings=0 src/**/*.ts src/*.ts"
2021-09-26 05:21:51 -07:00
},
"devDependencies": {
2022-06-30 15:41:04 -07:00
"@hyper-tuner/eslint-config": "^0.1.6",
"@types/node": "^17.0.33",
2021-09-26 05:21:51 -07:00
"eslint-plugin-modules-newline": "^0.0.6",
"eslint-plugin-prettier": "^4.2.1",
2021-12-13 14:24:25 -08:00
"typescript": "^4.5.3"
2021-09-26 05:21:51 -07:00
}
}