@squidcloud/client 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +12 -0
  2. package/package.json +62 -0
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@squidcloud/client",
3
+ "version": "1.0.1",
4
+ "description": "A typescript implementation of the Squid client",
5
+ "main": "index.js",
6
+ "types": "typescript-client/src/index.d.ts",
7
+ "files": [
8
+ "src"
9
+ ],
10
+ "scripts": {
11
+ "prebuild": "rimraf dist",
12
+ "build": "webpack --mode=production",
13
+ "postbuild": "npm run copy-files",
14
+ "build:dev": "webpack --mode=development",
15
+ "build:prod": "webpack --mode=production",
16
+ "copy-files": "cpx package.json dist",
17
+ "watch": "webpack --watch",
18
+ "test": "jest --detectOpenHandles",
19
+ "test:watch": "jest --watch",
20
+ "test:cov": "jest --coverage",
21
+ "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
22
+ "test:e2e": "jest --config ./test/jest-e2e.json",
23
+ "prepublish": "npm run build",
24
+ "publish": "cd dist && npm publish --access public"
25
+ },
26
+ "keywords": [
27
+ "typescript",
28
+ "javascript",
29
+ "squiddb",
30
+ "realtime",
31
+ "database"
32
+ ],
33
+ "author": "",
34
+ "license": "ISC",
35
+ "dependencies": {
36
+ "@apollo/client": "^3.7.4",
37
+ "@supercharge/promise-pool": "^2.3.2",
38
+ "cross-fetch": "^3.1.5",
39
+ "lodash": "^4.17.21",
40
+ "lokijs": "^1.5.12",
41
+ "rxjs": "7.5.7",
42
+ "socket.io-client": "^4.5.2"
43
+ },
44
+ "devDependencies": {
45
+ "cpx": "^1.5.0",
46
+ "@types/lodash": "^4.14.186",
47
+ "@types/lokijs": "^1.5.7",
48
+ "@typescript-eslint/eslint-plugin": "^5.0.0",
49
+ "@typescript-eslint/parser": "^5.0.0",
50
+ "@webpack-cli/generators": "^3.0.0",
51
+ "copy-webpack-plugin": "^11.0.0",
52
+ "eslint": "8.22.0",
53
+ "eslint-config-prettier": "^8.3.0",
54
+ "eslint-plugin-prettier": "^4.0.0",
55
+ "generate-package-json-webpack-plugin": "^2.6.0",
56
+ "prettier": "^2.8.0",
57
+ "tsconfig-paths-webpack-plugin": "^4.0.0",
58
+ "tscpaths": "^0.0.9",
59
+ "webpack": "^5.75.0",
60
+ "webpack-cli": "^5.0.0"
61
+ }
62
+ }