-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.5 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
54
55
56
57
{
"name": "tcp-websocket",
"description": "A WebSocket client-only class made with TCP streams.",
"version": "0.2.0",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"bun": "./dist/index.js",
"node": "./dist/index.js",
"require": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun x rimraf ./dist ./tsconfig.tsbuildinfo && bun run build:types && bun run build:bun",
"build:bun": "bun build ./src/index.ts --target bun --sourcemap=external --format esm --outdir ./dist --minify",
"build:types": "bun x tsc",
"release": "release-it"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagAnnotation": "Release v${version}",
"tagName": "v${version}"
},
"github": {
"draft": false,
"release": true,
"releaseName": "v${version}"
},
"npm": {
"publish": true
},
"hooks": {
"before:init": "bun run build"
}
},
"license": "MIT",
"author": "Mikkel ALMONTE--RINGAUD <[email protected]> (https://github.com/Vexcited)",
"repository": "https://github.com/Vexcited/tcp-websocket",
"bugs": "https://github.com/Vexcited/tcp-websocket/issues",
"keywords": [
"bun",
"tcp",
"websocket"
],
"devDependencies": {
"@types/bun": "^1.1.6",
"release-it": "^17.6.0",
"typescript": "^5.5.4"
}
}