budibase/packages/shared-core/package.json

25 lines
735 B
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",
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": {
"@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"
}
}