-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 772 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 772 Bytes
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
{
"name": "kcpjs",
"version": "1.0.10",
"description": "kcpjs = kcpgo_to_js(kcp)",
"homepage": "https://github.com/bruce48x/kcpjs",
"main": "./dist/index",
"types": "./src/index",
"scripts": {
"build": "yarn format && yarn lint && yarn buildcode",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint \"**/*.ts\" --fix",
"buildcode": "tsc -p tsconfig.build.json"
},
"keywords": [
"kcp"
],
"author": "bruce",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"eslint": "^8",
"prettier": "^3",
"typescript": "5.3.3"
},
"dependencies": {
"@ronomon/reed-solomon": "^6.0.0",
"crc-32": "^1.2.2"
}
}