mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 20:28:58 +00:00
25 lines
614 B
JSON
25 lines
614 B
JSON
{
|
|
"name": "@oxc-parser/binding",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "napi build --platform --release --js bindings.js",
|
|
"test": "vitest --typecheck run ./test"
|
|
},
|
|
"napi": {
|
|
"binaryName": "parser",
|
|
"targets": [
|
|
"x86_64-pc-windows-msvc",
|
|
"aarch64-pc-windows-msvc",
|
|
"x86_64-unknown-linux-gnu",
|
|
"aarch64-unknown-linux-gnu",
|
|
"x86_64-unknown-linux-musl",
|
|
"aarch64-unknown-linux-musl",
|
|
"x86_64-apple-darwin",
|
|
"aarch64-apple-darwin"
|
|
],
|
|
"dtsHeaderFile": "header.js"
|
|
},
|
|
"dependencies": {
|
|
"@oxc-project/types": "workspace:^"
|
|
}
|
|
}
|