-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.92 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.92 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
{
"name": "@xmtp/node-bindings",
"version": "1.10.0-dev",
"repository": {
"type": "git",
"url": "git+https://github.com/xmtp/libxmtp.git",
"directory": "bindings/node"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"artifacts": "napi artifacts",
"build:clean": "rm -rf dist",
"build:debug": "napi build --platform --esm",
"build:finish": "mkdir dist && mv index.js dist && mv index.d.ts dist && mv *.node dist",
"build:release": "napi build --platform --release --esm",
"build:test": "napi build --platform --esm --features test-utils",
"clean": "yarn build:clean && yarn test:clean",
"format": "prettier -w .",
"format:check": "prettier -c .",
"lint": "yarn lint:clippy && yarn lint:fmt",
"lint:clippy": "cargo clippy --locked --all-features --all-targets --no-deps -- -D warnings",
"lint:fmt": "cargo fmt --check",
"test": "yarn build:clean && yarn build:test && yarn build:finish && vitest run",
"test:clean": "rm -rf test/*.db3*"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@napi-rs/cli": "^3.5.1",
"@types/node": "^25.2.3",
"@types/uuid": "^11.0.0",
"@xmtp/content-type-remote-attachment": "^2.0.3",
"fast-glob": "^3.3.3",
"prettier": "^3.8.0",
"prettier-plugin-packagejson": "^3.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"viem": "^2.45.1",
"vite": "^7.3.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.8"
},
"packageManager": "yarn@4.11.0",
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"napi": {
"binaryName": "bindings_node"
}
}