31 lines
796 B
JSON
31 lines
796 B
JSON
{
|
|
"name": "@budibase/shared-core",
|
|
"version": "0.0.0",
|
|
"description": "Shared data utils",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./src/index.ts"
|
|
}
|
|
},
|
|
"author": "Budibase",
|
|
"license": "GPL-3.0",
|
|
"scripts": {
|
|
"prebuild": "rimraf dist/",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
|
|
"dev:builder": "yarn prebuild && tsc -p tsconfig.json --watch --preserveWatchOutput",
|
|
"check:types": "tsc -p tsconfig.json --noEmit --paths null"
|
|
},
|
|
"dependencies": {
|
|
"@budibase/types": "0.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^7.6.0",
|
|
"rimraf": "3.0.2",
|
|
"typescript": "4.7.3"
|
|
}
|
|
}
|