-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "smolrpc",
"version": "0.35.0",
"description": "A smol typesafe rpc implementation over websockets",
"repository": "samal-rasmussen/smolrpc",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./index.js"
}
},
"files": [
"index.js",
"src",
"types"
],
"types": "./types/index.d.ts",
"scripts": {
"build": "dts-buddy && npm run format",
"check": "tsc -w --noEmit",
"deno-server": "deno run --watch --allow-net examples/deno-server/index.ts",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"nodejs-client": "tsx --watch examples/nodejs-client/index.ts",
"nodejs-server": "tsx --watch examples/nodejs-server/index.ts",
"publish": "tsc --noEmit && publint && npm publish --registry https://registry.npmjs.org/ --access public"
},
"dependencies": {
"zod": "3.23.8"
},
"devDependencies": {
"@types/ws": "8.5.5",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"dts-buddy": "0.5.3",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"prettier": "3.0.3",
"publint": "0.2.0",
"tsx": "4.19.2",
"typescript": "5.5.4",
"ws": "8.18.0"
}
}