-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.12 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
63
64
65
66
67
68
69
70
71
72
{
"name": "@raft-tech/rdp-sdk-typescript",
"version": "2026.33.0",
"description": "TypeScript SDK for client applications interacting with RDP.",
"type": "module",
"license": "Apache-2.0",
"homepage": "https://developer.teamraft.com",
"repository": {
"type": "git",
"url": "git+https://github.com/raft-tech/rdp-sdk-typescript.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/raft-tech/rdp-sdk-typescript/issues"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"main": "dist/src/node/index.js",
"types": "dist/src/node/index.d.ts",
"exports": {
".": {
"browser": {
"types": "./dist/src/web/index.d.ts",
"import": "./dist/src/web/index.js"
},
"default": {
"types": "./dist/src/node/index.d.ts",
"import": "./dist/src/node/index.js"
}
},
"./web": {
"types": "./dist/src/web/index.d.ts",
"import": "./dist/src/web/index.js"
}
},
"scripts": {
"build": "tsc",
"check:dist-imports": "node -e 'await import(\"@buf/raft_wdm.bufbuild_es/raft/wdm/v1/object_pb.js\"); await import(\"@buf/raft_wdm.bufbuild_es/raft/wdm/v1/service/object_service_pb.js\"); await import(\"./dist/src/node/index.js\"); await import(\"./dist/src/web/index.js\")'",
"test": "vitest run --coverage",
"lint": "biome check src/ tests/ examples/",
"lint:fix": "biome check --fix src/ tests/ examples/",
"format": "biome format --write src/ tests/ examples/"
},
"dependencies": {
"@buf/raft_wdm.bufbuild_es": "2.12.1-20260717145038-489cef7b7304.1",
"@bufbuild/protobuf": "^2.12.1",
"@connectrpc/connect": "^2",
"@connectrpc/connect-node": "^2",
"@connectrpc/connect-web": "^2",
"dotenv": "^17.4.1",
"oauth4webapi": "^3.8.5",
"pino": "^9"
},
"devDependencies": {
"@biomejs/biome": "^1",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^3",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^5.7",
"vitest": "^3"
}
}