-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
58
59
60
61
62
63
64
{
"name": "xmtp-e2ee",
"version": "0.0.9",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"browser": {
"fs": false,
"path": false
},
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rollup -c",
"build:watch": "yarn build -w",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"publish": "npm publish",
"test": "yarn build && vitest",
"test:client": "vitest run tests/client"
},
"dependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.5",
"@xmtp/content-type-primitives": "^1.0.2",
"@xmtp/content-type-reaction": "^1.1.10-beta.1",
"@xmtp/content-type-read-receipt": "^2.0.0",
"@xmtp/content-type-remote-attachment": "1.1.11",
"@xmtp/content-type-reply": "^1.1.11",
"@xmtp/content-type-text": "^1.0.0",
"@xmtp/grpc-api-client": "^0.2.8",
"@xmtp/xmtp-js": "^13.0.3",
"typescript": "^5.4.5",
"viem": "^2.16.3"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.14.2",
"@vitest/coverage-v8": "^2.1.4",
"prettier": "^3.3.1",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"ts-node": "^10.9.2",
"turbo": "^2.2.3",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}