-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
80 lines (80 loc) · 1.56 KB
/
deno.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@oazmi/socks",
"version": "0.1.0",
"description": "utility library for websockets between a server and client.",
"author": "Omar Azmi",
"license": "Anti-Competition License",
"repository": {
"type": "git",
"url": "git+https://github.com/oazmi/socks.git"
},
"bugs": {
"url": "https://github.com/oazmi/socks/issues"
},
"exports": {
".": "./src/mod.ts",
"./funcdefs": "./src/funcdefs.ts",
"./typedefs": "./src/typedefs.ts"
},
"publish": {
"exclude": [
"./.vscode/",
"./.github/",
"./examples/",
"./test/"
]
},
"test": {
"include": [
"./test/",
"./src/mod.ts"
]
},
"fmt": {
"useTabs": true,
"semiColons": false,
"singleQuote": false,
"lineWidth": 800,
"proseWrap": "never",
"include": [
"./src/"
]
},
"compilerOptions": {
"lib": [
"esnext",
"dom",
"deno.ns"
],
"strict": true,
"allowJs": true
},
"package_json": {
"dependencies": {},
"devDependencies": {
"typescript": "^5.0.0",
"esbuild": "^0.20.1",
"typedoc": "^0.25.9",
"typedoc-plugin-missing-exports": "^2.2.0"
},
"keywords": [
"websocket",
"wrapper",
"wrapper-library",
"time-sync",
"time-synchronization",
"speedtest",
"speed-test"
]
},
"node_packageManager": "npm",
"tasks": {
"build-dist": "deno run -A ./build_dist.ts",
"build-docs": "deno run -A ./build_docs.ts",
"build-npm": "deno run -A ./build_npm.ts",
"build-npm-dist": "cd \"./npm/\" && npm run build-dist",
"clean": "deno run -A ./clean.ts",
"test": "deno test -A",
"publish-jsr": "deno publish --allow-slow-types"
}
}