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

31 lines
913 B
JSON
Raw Normal View History

{
"name": "@budibase/shared-core",
2023-04-22 01:45:11 +12:00
"version": "2.5.6-alpha.16",
"description": "Shared data utils",
"main": "dist/cjs/src/index.js",
"types": "dist/mjs/src/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/src/index.js",
"require": "./dist/cjs/src/index.js"
},
"./package.json": "./dist/mjs/package.json"
},
"author": "Budibase",
"license": "GPL-3.0",
"scripts": {
"prebuild": "rimraf dist/",
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig-cjs.build.json",
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
"dev:builder": "yarn prebuild && concurrently \"tsc -p tsconfig.build.json --watch\" \"tsc -p tsconfig-cjs.build.json --watch\""
},
"dependencies": {
2023-04-22 01:45:11 +12:00
"@budibase/types": "2.5.6-alpha.16"
},
"devDependencies": {
"concurrently": "^7.6.0",
2023-03-11 05:23:32 +13:00
"rimraf": "3.0.2",
"typescript": "4.7.3"
}
}