-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.84 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.84 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
74
{
"name": "@oxc-solid-js/compiler",
"version": "1.1.4",
"description": "Port of babel-jsx-dom-expressions to oxc",
"keywords": [
"N-API",
"NAPI",
"Rust",
"napi-rs",
"node-addon",
"node-addon-api"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/taskylizard/oxc-solid-js.git"
},
"files": [
"index.d.ts",
"index.js"
],
"main": "index.js",
"types": "index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"artifacts": "napi artifacts",
"bench": "node --import @oxc-node/core/register benchmark/bench.ts",
"build": "napi build --platform --release --features napi --no-js --dts index.d.ts",
"build:debug": "napi build --platform",
"format": "run-p format:js format:rs",
"format:js": "oxfmt .",
"format:rs": "cargo fmt",
"prepublishOnly": "napi prepublish -t npm",
"version": "napi version"
},
"devDependencies": {
"@emnapi/core": "^1.5.0",
"@emnapi/runtime": "^1.5.0",
"@napi-rs/cli": "^3.2.0",
"@napi-rs/wasm-runtime": "^1.0.4",
"@oxc-node/core": "^0.0.35",
"@tybys/wasm-util": "^0.10.0",
"chalk": "^5.6.2",
"emnapi": "^1.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.42.0",
"tinybench": "^6.0.0",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.@(js|ts|tsx|yml|yaml|md|json)": [
"oxfmt"
]
},
"napi": {
"constEnum": true,
"binaryName": "oxc-solid-js-compiler",
"targets": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc"
]
},
"engines": {
"node": ">= 6.14.2 < 7 || >= 8.11.2 < 9 || >= 9.11.0 < 10 || >= 10.0.0"
},
"packageManager": "pnpm@10.32.1"
}