-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.59 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.59 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
{
"name": "irc-client-ts",
"version": "0.23.1",
"description": "IRC client protocol module for Deno, Node.js and Bun",
"type": "module",
"main": "./dist/mod.js",
"types": "./dist/mod.d.ts",
"exports": {
".": {
"types": "./dist/mod.d.ts",
"default": "./dist/mod.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"irc",
"irc-client",
"typescript",
"deno",
"bun",
"nodejs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jeromeludmann/irc.git"
},
"devDependencies": {
"@std/assert": "npm:@jsr/std__assert@^1.0.19",
"@std/fmt": "npm:@jsr/std__fmt@^1.0.9",
"@types/node": "^24.7.2",
"bun-types": "latest",
"tsx": "^4",
"typescript": "^5.9.3"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test:node": "tsx --test core/*_test.ts plugins/*_test.ts runtime/node_test.ts",
"typecheck:node": "tsc -p tsconfig.node.json --noEmit",
"test:node:integration": "npm run test:node:integration:ergo && npm run test:node:integration:inspircd && npm run test:node:integration:unrealircd",
"test:node:integration:ergo": "docker compose -f integration/ergo/docker-compose.yml down -v 2>/dev/null; docker compose -f integration/ergo/docker-compose.yml up -d --force-recreate && sleep 2 && IRCD=ergo tsx --test integration/integration_test.ts; docker compose -f integration/ergo/docker-compose.yml down -v",
"test:node:integration:inspircd": "docker compose -f integration/inspircd/docker-compose.yml down -v 2>/dev/null; docker compose -f integration/inspircd/docker-compose.yml up -d --force-recreate && sleep 3 && IRCD=inspircd tsx --test integration/integration_test.ts; docker compose -f integration/inspircd/docker-compose.yml down -v",
"test:node:integration:unrealircd": "docker compose -f integration/unrealircd/docker-compose.yml down -v 2>/dev/null; docker compose -f integration/unrealircd/docker-compose.yml up -d --force-recreate && sleep 3 && IRCD=unrealircd tsx --test integration/integration_test.ts; docker compose -f integration/unrealircd/docker-compose.yml down -v",
"test:bun": "bun test core/*_test.ts plugins/*_test.ts runtime/bun_test.ts",
"typecheck:bun": "tsc -p tsconfig.bun.json --noEmit",
"test:bun:integration:ergo": "docker compose -f integration/ergo/docker-compose.yml down -v 2>/dev/null; docker compose -f integration/ergo/docker-compose.yml up -d --force-recreate && sleep 2 && IRCD=ergo bun test --timeout 30000 integration/integration_test.ts; docker compose -f integration/ergo/docker-compose.yml down -v"
}
}