-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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": "@xcfx/node",
"version": "0.4.0",
"description": "",
"main": "index.js",
"types": "index.d.ts",
"browser": "browser.js",
"repository": {
"type": "git",
"url": "git+https://github.com/iosh/xcfx-node.git"
},
"license": "MIT",
"keywords": ["conflux", "conflux-client"],
"files": ["index.d.ts", "index.js", "conflux.js", "conflux.d.ts", "configs"],
"napi": {
"binaryName": "node",
"targets": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc"
]
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"artifacts": "napi artifacts",
"build:ts": "tsc",
"build": "napi build --dts conflux.d.ts --js conflux.js --platform --release",
"build:debug": "napi build --dts conflux.d.ts --js conflux.js --platform ",
"format:toml": "taplo format",
"format:rs": "cargo fmt",
"test": "cross-env NODE_OPTIONS=--max-old-space-size=32768 vitest run",
"format": "biome format --write",
"lint": "biome check --fix",
"changeset:version": "changeset version && pnpm install --lockfile-only && pnpm format",
"changeset:prepublish": "pnpm build:ts",
"changeset:publish": "pnpm changeset:prepublish && changeset publish"
},
"dependencies": {
"cive": "0.8.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/cli": "^2.27.8",
"@napi-rs/cli": "3.0.0-alpha.62",
"@types/node": "^22.5.2",
"cross-env": "^7.0.3",
"typescript": "^5.5.3",
"vitest": "^2.1.6"
},
"optionalDependencies": {
"@xcfx/node-darwin-arm64": "workspace:*",
"@xcfx/node-darwin-x64": "workspace:*",
"@xcfx/node-linux-x64-gnu": "workspace:*",
"@xcfx/node-win32-x64-msvc": "workspace:*"
},
"packageManager": "[email protected]"
}