-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "lagrangejs",
"description": "nodejs implementation for Lagrange.Core (只是为了过过瘾), derived from oicq",
"author": "Linwenxuan05",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"dev": "ts-node-dev --ignore-watch data -r tsconfig-paths/register src/test.ts",
"build": "tsc && tsc-alias && cp -r src/core/protobuf/*.min.* lib/core/protobuf",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier src --write",
"test": "tsc"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"dependencies": {
"axios": "^1.6.7",
"log4js": "^6.9.1",
"long": "^5.2.3",
"pngjs": "^7.0.0",
"probe-image-size": "^7.2.3",
"silk-wasm": "3.2.3"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/pngjs": "^6.0.4",
"@types/probe-image-size": "^7.2.4",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"prettier": "^3.2.5",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "5.3.3",
"ws": "^8.16.0"
},
"files": [
"/src/**/*.js",
"/src/**/*.d.ts",
"/src/**/LICENSE"
]
}