-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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
62
{
"name": "@spacingbat3/disconnection",
"version": "1.3.1",
"description": "A pack of WebSocket Server and IPC to handle Discord cross-process communication.",
"main": "./dist/main.js",
"types": "./types/main.d.ts",
"scripts": {
"prepack": "tsc",
"watch": "tsc --watch",
"lint": "eslint . --ext .ts --cache --cache-location cache/eslint.json",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpacingBat3/DisConnection.git"
},
"keywords": [
"webcord",
"discord",
"websocket",
"ipc",
"fosscord"
],
"author": {
"name": "SpacingBat3",
"email": "[email protected]",
"url": "https://github.com/SpacingBat3"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/SpacingBat3/DisConnection/issues"
},
"homepage": "https://github.com/SpacingBat3/DisConnection#readme",
"devDependencies": {
"@tsconfig/strictest": "^2.0.0",
"@types/node": "^20.3.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"typedoc": "^0.25.0",
"typescript": "^5.0.3"
},
"dependencies": {
"@spacingbat3/kolor": "^3.0.1",
"@spacingbat3/lss": "^1.2.0",
"tslib": "^2.4.1",
"ws": "^8.8.1"
},
"engines": {
"node": "^16.10.0 || ^18.10.0 || >=19.0.0",
"npm": ">=8.0.0"
},
"imports": {
"#T/*":"./dist/transport/*.js",
"#C/*":"./dist/common/*/js"
},
"publishConfig": {
"access": "public"
}
}