1
0
Fork 0
mirror of synced 2024-07-29 01:56:15 +12:00
budibase/packages/shared-core/package.json

25 lines
760 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",
2023-08-02 03:46:09 +12:00
"dev:builder": "yarn prebuild && 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": {
2023-05-29 20:54:10 +12:00
"@budibase/types": "0.0.0"
2023-04-21 07:54:42 +12:00
},
"devDependencies": {
"concurrently": "^7.6.0",
2023-03-11 05:23:32 +13:00
"rimraf": "3.0.2",
"typescript": "4.7.3"
}
}