-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
63
64
{
"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",
"type": "module",
"types": "./types/main.d.ts",
"scripts": {
"prepack": "tsc",
"watch": "tsc --watch",
"lint": "eslint . -c config/eslint.mjs --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": {
"@eslint/js": "^9.17.0",
"@tsconfig/strictest": "^2.0.0",
"@types/node": "^20.3.1",
"@types/ws": "^8.5.3",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.6.1",
"typedoc": "^0.27.6",
"typescript": "^5.0.3",
"typescript-eslint": "^8.19.0"
},
"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"
}
}