-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "@jetify/client",
"version": "0.9.0-dev",
"description": "Jetify client library for Node.js and the browser",
"keywords": [
"jetify",
"api",
"client"
],
"author": {
"name": "Jetify Inc.",
"email": "opensource@jetify.com"
},
"license": "Apache-2.0",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"exports": {
".": "./dist/index.js",
"./*": "./dist/*/index.js"
},
"scripts": {
"build": "tsup src",
"check": "prettier --check .",
"dev": "tsup src --watch",
"fmt": "pnpm lint --fix && pnpm prettier",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint ./src",
"prettier": "prettier --write .",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"tsup": "^8.5.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@bufbuild/protobuf": "^1.4.0",
"@connectrpc/connect": "^1.1.2",
"@connectrpc/connect-web": "^1.1.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.10.0+sha256.355a8ab8dbb6ad41befbef39bc4fd6b5df85e12761d2724bd01f13e878de4b13"
}