-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.67 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
57
58
59
60
61
62
{
"name" : "@protoqol/quo-ts",
"author" : {
"name" : "Protoqol",
"email": "open-source@protoqol.nl",
"url" : "https://protoqol.nl"
},
"repository" : {
"type": "git",
"url" : "https://github.com/Protoqol/Quo-ts"
},
"bugs" : {
"url" : "https://github.com/Protoqol/Quo-ts/issues",
"email": "open-source@protoqol.nl"
},
"homepage" : "https://quo.protoqol.sh",
"description" : "Companion package for the Quo debugger.",
"version" : "0.1.2",
"keywords" : [
"node",
"debugger",
"typescript",
"javascript"
],
"license" : "GPL-3.0-only",
"type" : "module",
"files" : [
"target"
],
"main" : "./target/main.js",
"module" : "./target/main.js",
"browser" : "./target/quo.bundle.js",
"types" : "./target/main.d.ts",
"exports" : {
".": {
"import" : "./target/main.js",
"browser": "./target/quo.bundle.js",
"types" : "./target/main.d.ts"
}
},
"engines" : {
"node": ">=20.0.0"
},
"scripts" : {
"build" : "tsc && npm run bundle",
"bundle" : "esbuild src/main.ts --bundle --outfile=target/quo.bundle.js --format=esm --platform=browser --minify",
"test" : "tsx --test src/main.test.ts",
"manual_test": "tsx test.js"
},
"dependencies" : {
"uuid" : "^14.0.0",
"xxhashjs": "^0.2.2"
},
"devDependencies": {
"@types/node" : "^25.4.0",
"@types/xxhashjs": "^0.2.4",
"esbuild" : "^0.25.0",
"msw" : "^2.12.10",
"tsx" : "^4.21.0",
"typescript" : "^5.9.3"
}
}