-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.36 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
{
"name": "@platformatic/python-node",
"description": "Run ASGI-compatible Python apps in Node.js",
"version": "2.0.0",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/platformatic/python-node"
},
"napi": {
"binaryName": "python-node",
"targets": [
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"scope": "@platformatic"
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^3.0.4",
"@oxc-node/core": "^0.0.35",
"oxlint": "^0.18.0"
},
"engines": {
"node": ">= 20"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "npm run build:debug -- --release",
"build:debug": "napi build --platform --features napi-support",
"build:wasm": "rustup target add wasm32-wasip1 && cargo build --package fix-python-soname --target wasm32-wasip1 --release && cp target/wasm32-wasip1/release/fix-python-soname.wasm .",
"prepublishOnly": "npm run build:wasm && napi prepublish -t npm",
"lint": "oxlint",
"test": "node --test test/**.test.mjs",
"universal": "napi universal",
"version": "napi version"
},
"optionalDependencies": {
"@platformatic/python-node-darwin-arm64": "^2.0.0",
"@platformatic/python-node-linux-x64-gnu": "^2.0.0"
}
}