acebase-core
Version:
Shared AceBase core components, no need to install manually
57 lines (56 loc) • 2.01 kB
JSON
{
"name": "acebase-core",
"version": "1.28.1",
"description": "Shared AceBase core components, no need to install manually",
"comments": {
"browser": "webpack/browserify file replacements have moved to package.json in dist/cjs and dist/esm. See README.md for more info",
"exports": "See README.md for more info about exported and used ESM and CommonJS distributions"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"browser": {
"./dist/cjs/process/index.js": "./dist/cjs/process/browser.js",
"./dist/esm/process/index.js": "./dist/esm/process/browser.js",
"./dist/cjs/cuid/fingerprint/index.js": "./dist/cjs/cuid/fingerprint/browser.js",
"./dist/esm/cuid/fingerprint/index.js": "./dist/esm/cuid/fingerprint/browser.js"
},
"private": false,
"repository": "github:appy-one/acebase-core",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run build && jasmine",
"build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:packages && echo Done!",
"build:clean": "rm -fr dist/*",
"build:esm": "tsc -p tsconfig.json && npx tsc-esm-fix ---target='dist/esm'",
"build:cjs": "tsc -p tsconfig-cjs.json",
"build:packages": "bash ./create-package-files"
},
"keywords": [
"acebase"
],
"author": "Ewout Stortenbeker <me@appy.one> (http://appy.one)",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^3.7.4",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.20.0",
"eslint-plugin-jasmine": "^4.1.3",
"jasmine": "^3.99.0",
"tsc-esm-fix": "^2.13.0",
"typescript": "^5.0.4"
},
"optionalDependencies": {
"rxjs": ">= 5.x <= 7.x"
}
}