-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 KB
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
{
"name": "itdog-web-api",
"description": "A TypeScript library for ping functionality using itdog.cn Web API",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint . && pnpm run typecheck",
"lint:fix": "eslint . --fix && pnpm run typecheck",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"example": "tsx example/test.ts",
"example:fetch": "tsx example/fetch-client-test.ts",
"prepublishOnly": "pnpm prune & pnpm dedupe && pnpm run lint:fix && pnpm run test && pnpm run build"
},
"keywords": [
"ping",
"itdog",
"network",
"typescript",
"websocket"
],
"author": "Sn0wo2",
"license": "MIT",
"dependencies": {
"cheerio": "^1.1.2",
"cookie": "^1.0.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@commitlint/types": "^20.0.0",
"@eslint/js": "^9.35.0",
"@types/node": "^24.5.2",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "^9.35.0",
"tslib": "^2.8.1",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0",
"undici": "^7.16.0",
"vitest": "^4.0.0"
},
"private": false
}