budibase/packages/shared-core/package.json

54 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@budibase/shared-core",
2023-05-29 10:54:10 +02:00
"version": "0.0.0",
"description": "Shared data utils",
2023-08-01 17:46:09 +02:00
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": {
2023-08-02 00:21:59 +02:00
"import": "./dist/index.js"
2023-08-01 17:46:09 +02:00
}
},
"author": "Budibase",
"license": "GPL-3.0",
"scripts": {
"prebuild": "rimraf dist/",
2023-08-01 17:56:27 +02:00
"build": "tsc -p tsconfig.build.json",
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
2023-08-01 17:46:09 +02:00
"dev:builder": "yarn prebuild && tsc -p tsconfig.json --watch --preserveWatchOutput",
2023-08-01 13:24:55 +02:00
"check:types": "tsc -p tsconfig.json --noEmit --paths null"
},
2023-04-20 21:54:42 +02:00
"dependencies": {
2023-05-29 10:54:10 +02:00
"@budibase/types": "0.0.0"
2023-04-20 21:54:42 +02:00
},
"devDependencies": {
"concurrently": "^7.6.0",
2023-03-10 17:23:32 +01:00
"rimraf": "3.0.2",
"typescript": "4.7.3"
2023-05-23 19:00:56 +02:00
},
"nx": {
"targets": {
"build": {
"dependsOn": [
{
"projects": [
"@budibase/types"
],
"target": "build"
}
]
2023-08-01 15:55:38 +02:00
},
"dev:builder": {
"dependsOn": [
{
"projects": [
"@budibase/types"
],
"target": "build"
}
]
2023-05-23 19:00:56 +02:00
}
}
}
}