1
0
Fork 0
mirror of synced 2024-07-09 00:06:05 +12:00
budibase/packages/shared-core/package.json

27 lines
797 B
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",
2024-03-20 11:28:03 +13:00
"check:types": "tsc -p tsconfig.json --noEmit --paths null",
"test": "jest",
"test:watch": "yarn test --watchAll"
},
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"
}
}