1
0
Fork 0
mirror of synced 2024-07-14 18:55:45 +12:00
budibase/packages/shared-core/package.json

49 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@budibase/shared-core",
2023-05-29 20:54:10 +12:00
"version": "0.0.0",
"description": "Shared data utils",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Budibase",
"license": "GPL-3.0",
"scripts": {
"prebuild": "rimraf dist/",
2023-08-09 04:33:57 +12:00
"build": "node ../../scripts/build.js && tsc -p tsconfig.build.json --emitDeclarationOnly --paths null",
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
"dev": "tsc -p tsconfig.json --watch --preserveWatchOutput",
2023-08-01 23:24:55 +12:00
"check:types": "tsc -p tsconfig.json --noEmit --paths null"
},
2023-04-21 07:54:42 +12:00
"dependencies": {
"@budibase/types": "0.0.0",
2024-02-14 02:42:58 +13:00
"cron-validate": "1.4.5"
2023-04-21 07:54:42 +12:00
},
"devDependencies": {
2023-03-11 05:23:32 +13:00
"rimraf": "3.0.2",
2023-09-23 04:17:19 +12:00
"typescript": "5.2.2"
2023-08-10 02:20:36 +12:00
},
"nx": {
"targets": {
"build": {
"dependsOn": [
{
"projects": [
"@budibase/types"
],
"target": "build"
}
]
},
"dev": {
"dependsOn": [
{
"projects": [
"@budibase/types"
],
"target": "build"
}
]
2023-08-10 02:20:36 +12:00
}
}
}
}