-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.71 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.71 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
68
69
70
71
72
73
{
"name": "oxc-parser",
"version": "0.56.5",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"build-dev": "napi build --no-dts-cache --platform --js bindings.js",
"build": "pnpm run build-dev --release",
"test": "vitest --typecheck run ./test && tsc",
"bench": "vitest bench --run ./bench.bench.mjs"
},
"engines": {
"node": ">=14.0.0"
},
"description": "Oxc Parser Node API",
"keywords": [
"oxc",
"parser"
],
"author": "Boshen and oxc contributors",
"license": "MIT",
"homepage": "https://oxc.rs",
"bugs": "https://github.com/oxc-project/oxc/issues",
"repository": {
"type": "git",
"url": "https://github.com/oxc-project/oxc.git",
"directory": "napi/parser"
},
"funding": {
"url": "https://github.com/sponsors/Boshen"
},
"files": [
"index.d.ts",
"index.js",
"browser.js",
"bindings.js",
"deserialize-js.js",
"deserialize-ts.js"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@oxc-project/types": "workspace:^"
},
"devDependencies": {
"@codspeed/vitest-plugin": "^4.0.0",
"vitest": "catalog:"
},
"napi": {
"binaryName": "parser",
"packageName": "@oxc-parser/binding",
"targets": [
"x86_64-pc-windows-msvc",
"aarch64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"armv7-unknown-linux-gnueabihf",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"wasm32-wasip1-threads"
],
"wasm": {
"browser": {
"fs": true
}
},
"dtsHeaderFile": "header.js"
}
}