forked from oxc-project/oxc-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"name": "oxc-resolver",
"version": "11.1.0",
"license": "MIT",
"description": "Oxc Resolver Node API",
"packageManager": "pnpm@10.11.0",
"homepage": "https://oxc.rs",
"repository": {
"type": "git",
"url": "git+https://github.com/oxc-project/oxc-resolver.git"
},
"funding": {
"url": "https://github.com/sponsors/Boshen"
},
"main": "index.js",
"browser": "browser.js",
"files": [
"index.d.ts",
"index.js",
"browser.js",
"webcontainer-fallback.js"
],
"scripts": {
"test": "vitest run -r ./napi",
"build:debug": "napi build --platform --manifest-path napi/Cargo.toml",
"build": "pnpm run build:debug --features allocator --release",
"postbuild:debug": "node napi/patch.mjs"
},
"devDependencies": {
"@napi-rs/cli": "3.0.0-alpha.79",
"@napi-rs/wasm-runtime": "^0.2.11",
"@types/node": "^24.0.0",
"emnapi": "^1.4.3",
"typescript": "^5.8.3",
"vitest": "^3.2.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"napi": {
"binaryName": "resolver",
"packageName": "@oxc-resolver/binding",
"wasm": {
"browser": {
"fs": true
}
},
"targets": [
"x86_64-pc-windows-msvc",
"aarch64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"armv7-unknown-linux-gnueabihf",
"s390x-unknown-linux-gnu",
"riscv64gc-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"wasm32-wasip1-threads"
]
}
}