nocobase/packages/database/package.json

29 lines
809 B
JSON
Raw Normal View History

2020-10-24 07:34:43 +00:00
{
"name": "@nocobase/database",
2021-12-06 13:23:34 +00:00
"version": "0.6.0-alpha.0",
"private": true,
2020-10-24 07:34:43 +00:00
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
2021-12-06 13:23:34 +00:00
"scripts": {
"build": "rimraf -rf lib esm dist && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project tsconfig.build.json",
"build:esm": "tsc --project tsconfig.build.json --module es2015 --outDir esm"
},
2020-10-24 07:34:43 +00:00
"dependencies": {
2021-12-06 13:23:34 +00:00
"@nocobase/utils": "^0.6.0-alpha.0",
"async-mutex": "^0.3.2",
2021-01-13 07:43:41 +00:00
"deepmerge": "^4.2.2",
2021-12-06 13:23:34 +00:00
"flat": "^5.0.2",
2020-10-24 07:34:43 +00:00
"glob": "^7.1.6",
2021-11-08 12:17:46 +00:00
"sequelize": "^6.9.0"
2020-10-24 07:34:43 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/nocobase/nocobase.git",
"directory": "packages/database"
2021-04-07 02:41:06 +00:00
},
2021-12-06 13:23:34 +00:00
"gitHead": "f0b335ac30f29f25c95d7d137655fa64d8d67f1e"
2020-10-24 07:34:43 +00:00
}