mirror of
https://github.com/appy-one/acebase-client.git
synced 2026-06-30 06:02:03 -06:00
* For backward compatibility with acebase-servers still running 2.x * Added socket.io-client types
74 lines
2 KiB
JSON
74 lines
2 KiB
JSON
{
|
|
"name": "acebase-client",
|
|
"version": "1.17.2",
|
|
"description": "Client to connect to an AceBase realtime database server",
|
|
"main": "./dist/cjs/index.js",
|
|
"browser": {
|
|
"socket.io-client": "socket.io-client/dist/socket.io.slim.js",
|
|
"./dist/cjs/request/index.js": "./dist/cjs/request/browser.js",
|
|
"./dist/cjs/performance/index.js": "./dist/cjs/performance/browser.js",
|
|
"./dist/cjs/base64/index.js": "./dist/cjs/base64/browser.js"
|
|
},
|
|
"types": "./index.d.ts",
|
|
"private": false,
|
|
"repository": "github:appy-one/acebase-client",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"build": "npm run build:clean && tsc && npm run browserify",
|
|
"build:clean": "rm -fr dist/*",
|
|
"browserify": "browserify dist/cjs/browser.js -o dist/browser.js --standalone acebaseclient --ignore rxjs && terser dist/browser.js -o dist/browser.min.js && cp src/browser.html dist",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"npmfix": "npm i --package-lock-only"
|
|
},
|
|
"keywords": [
|
|
"database",
|
|
"db",
|
|
"json",
|
|
"binary",
|
|
"object",
|
|
"tree",
|
|
"nosql",
|
|
"embedded",
|
|
"schemaless",
|
|
"orm",
|
|
"query",
|
|
"index",
|
|
"indexes",
|
|
"fulltext",
|
|
"geo",
|
|
"transaction",
|
|
"datastore",
|
|
"fast",
|
|
"low-memory",
|
|
"realtime",
|
|
"events",
|
|
"users",
|
|
"authentication",
|
|
"rules",
|
|
"authorization",
|
|
"ssl",
|
|
"https",
|
|
"firebase alternative",
|
|
"browser",
|
|
"cache",
|
|
"synchronization",
|
|
"data proxy"
|
|
],
|
|
"author": "Ewout Stortenbeker <me@appy.one> (http://appy.one)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"acebase-core": "^1.22.4",
|
|
"socket.io-client": "^2.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.11.0",
|
|
"@types/socket.io-client": "^1.4.36",
|
|
"@typescript-eslint/eslint-plugin": "^5.40.0",
|
|
"@typescript-eslint/parser": "^5.40.0",
|
|
"browserify": "^17.0.0",
|
|
"eslint": "^8.25.0",
|
|
"terser": "^5.15.1",
|
|
"typescript": "^4.8.4"
|
|
}
|
|
}
|