-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@spec.dev/realtime-client",
"version": "0.0.2",
"description": "Spec Realtime Client",
"keywords": [
"javascript",
"typescript",
"spec",
"realtime",
"table",
"client"
],
"homepage": "https://github.com/spec-dev/realtime-client",
"bugs": "https://github.com/spec-dev/realtime-client/issues",
"license": "MIT",
"author": "Spec",
"files": [
"dist",
"src"
],
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"types": "dist/main/index.d.ts",
"sideEffects": false,
"repository": "spec-dev/realtime-client",
"scripts": {
"clean": "rimraf dist",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"build": "genversion src/lib/version.ts --es6 && run-s clean format build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"types-generate": "dts-gen -m '@spec.dev/realtime-client' -s"
},
"dependencies": {
"pg": "^8.7.3",
"pg-listen": "^1.7.0",
"short-uuid": "^4.2.0"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/pg": "^8.6.5",
"genversion": "^3.0.1",
"husky": "^4.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.11",
"typedoc": "^0.22.11",
"typescript": "^4.5.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jsdelivr": "dist/umd/realtime-client.js",
"unpkg": "dist/umd/realtime-client.js"
}