budibase/packages/shared-core/package.json

51 lines
1.2 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",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Budibase",
"license": "GPL-3.0",
"scripts": {
"prebuild": "rimraf dist/",
2023-08-08 18:33:57 +02: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",
2024-03-19 23:28:03 +01:00
"check:types": "tsc -p tsconfig.json --noEmit --paths null",
"test": "jest",
"test:watch": "yarn test --watchAll"
},
2023-04-20 21:54:42 +02:00
"dependencies": {
"@budibase/types": "0.0.0",
2024-02-13 14:42:58 +01:00
"cron-validate": "1.4.5"
2023-04-20 21:54:42 +02:00
},
"devDependencies": {
2023-03-10 17:23:32 +01:00
"rimraf": "3.0.2",
2023-09-22 18:17:19 +02:00
"typescript": "5.2.2"
2024-05-24 13:45:00 +02:00
},
"nx": {
"targets": {
"build": {
"dependsOn": [
{
"projects": [
"@budibase/types"
],
"target": "build"
}
]
2024-05-24 13:47:34 +02:00
},
"dev": {
"dependsOn": [
{
"projects": [
"@budibase/types"
],
"target": "build"
}
]
2024-05-24 13:45:00 +02:00
}
}
}
}