oxc/wasm/parser/package.json
2024-02-05 21:10:11 +08:00

37 lines
1,021 B
JSON

{
"name": "@oxc-parser/wasm",
"version": "0.0.5",
"description": "Wasm target for the oxc parser.",
"keywords": [
"JavaScript",
"TypeScript",
"parser"
],
"author": "Boshen and oxc contributors",
"license": "MIT",
"homepage": "https://oxc-project.github.io",
"repository": {
"type": "git",
"url": "https://github.com/oxc-project/oxc",
"directory": "wasm/parser"
},
"funding": {
"url": "https://github.com/sponsors/Boshen"
},
"files": [
"oxc_parser_wasm.d.ts",
"oxc_parser_wasm.js",
"oxc_parser_wasm_bg.wasm",
"oxc_parser_wasm_bg.wasm.d.ts",
"README.md"
],
"module": "oxc_parser_wasm.js",
"types": "oxc_parser_wasm.d.ts",
"scripts": {
"build": "wasm-pack build --release --no-pack --target web --out-dir ../../npm/parser-wasm . && pnpm run copy-files",
"copy-files": "cp ./package.json ../../npm/parser-wasm/package.json && cp ./README.md ../../npm/parser-wasm/README.md"
},
"devDependencies": {
"wasm-pack": "^0.12.1"
}
}