* add eslint package * upgrade lint * remove linting for generated files from trpc * ts imports * add missing features lint script * enable turbo ui * reference workspace deps correctly * fixes * Fix eslint test * Fix eslint test * npm run all back * fix e2e * fix e2e * fix e2e --------- Co-authored-by: Alex van Andel <me@alexvanandel.com>
28 lines
666 B
JSON
28 lines
666 B
JSON
{
|
|
"name": "@calcom/platform-enums",
|
|
"version": "0.0.0",
|
|
"main": "./dist/index.ts",
|
|
"types": "./dist/index.ts",
|
|
"private": true,
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.js",
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts.map"
|
|
},
|
|
"./monorepo": {
|
|
"import": "./monorepo.ts",
|
|
"require": "./monorepo.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "jest ./tests",
|
|
"build": "rm -rf ./dist && tsc --build --force tsconfig.json",
|
|
"build:watch": "tsc --build --force ./tsconfig.json --watch",
|
|
"post-install": "yarn build"
|
|
},
|
|
"dependencies": {
|
|
"@calcom/platform-constants": "workspace:*"
|
|
}
|
|
}
|