Skip to content

Commit 1e26055

Browse files
committed
feat(ci): add npm platform package directories for NAPI-RS
1 parent a212253 commit 1e26055

7 files changed

Lines changed: 120 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "@vibetracking/core-darwin-arm64",
3+
"version": "0.1.0",
4+
"os": ["darwin"],
5+
"cpu": ["arm64"],
6+
"main": "vibetracking-core.darwin-arm64.node",
7+
"files": ["vibetracking-core.darwin-arm64.node"],
8+
"description": "Native Rust core for vibetracking CLI (macOS ARM64)",
9+
"license": "MIT",
10+
"engines": {
11+
"node": ">= 16"
12+
},
13+
"publishConfig": {
14+
"registry": "https://registry.npmjs.org/",
15+
"access": "public"
16+
}
17+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "@vibetracking/core-darwin-universal",
3+
"version": "0.1.0",
4+
"os": ["darwin"],
5+
"main": "vibetracking-core.darwin-universal.node",
6+
"files": ["vibetracking-core.darwin-universal.node"],
7+
"description": "Native Rust core for vibetracking CLI (macOS Universal)",
8+
"license": "MIT",
9+
"engines": {
10+
"node": ">= 16"
11+
},
12+
"publishConfig": {
13+
"registry": "https://registry.npmjs.org/",
14+
"access": "public"
15+
}
16+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "@vibetracking/core-darwin-x64",
3+
"version": "0.1.0",
4+
"os": ["darwin"],
5+
"cpu": ["x64"],
6+
"main": "vibetracking-core.darwin-x64.node",
7+
"files": ["vibetracking-core.darwin-x64.node"],
8+
"description": "Native Rust core for vibetracking CLI (macOS x64)",
9+
"license": "MIT",
10+
"engines": {
11+
"node": ">= 16"
12+
},
13+
"publishConfig": {
14+
"registry": "https://registry.npmjs.org/",
15+
"access": "public"
16+
}
17+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "@vibetracking/core-linux-arm64-gnu",
3+
"version": "0.1.0",
4+
"os": ["linux"],
5+
"cpu": ["arm64"],
6+
"main": "vibetracking-core.linux-arm64-gnu.node",
7+
"files": ["vibetracking-core.linux-arm64-gnu.node"],
8+
"description": "Native Rust core for vibetracking CLI (Linux ARM64 glibc)",
9+
"license": "MIT",
10+
"engines": {
11+
"node": ">= 16"
12+
},
13+
"libc": ["glibc"],
14+
"publishConfig": {
15+
"registry": "https://registry.npmjs.org/",
16+
"access": "public"
17+
}
18+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "@vibetracking/core-linux-x64-gnu",
3+
"version": "0.1.0",
4+
"os": ["linux"],
5+
"cpu": ["x64"],
6+
"main": "vibetracking-core.linux-x64-gnu.node",
7+
"files": ["vibetracking-core.linux-x64-gnu.node"],
8+
"description": "Native Rust core for vibetracking CLI (Linux x64 glibc)",
9+
"license": "MIT",
10+
"engines": {
11+
"node": ">= 16"
12+
},
13+
"libc": ["glibc"],
14+
"publishConfig": {
15+
"registry": "https://registry.npmjs.org/",
16+
"access": "public"
17+
}
18+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "@vibetracking/core-win32-arm64-msvc",
3+
"version": "0.1.0",
4+
"os": ["win32"],
5+
"cpu": ["arm64"],
6+
"main": "vibetracking-core.win32-arm64-msvc.node",
7+
"files": ["vibetracking-core.win32-arm64-msvc.node"],
8+
"description": "Native Rust core for vibetracking CLI (Windows ARM64)",
9+
"license": "MIT",
10+
"engines": {
11+
"node": ">= 16"
12+
},
13+
"publishConfig": {
14+
"registry": "https://registry.npmjs.org/",
15+
"access": "public"
16+
}
17+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "@vibetracking/core-win32-x64-msvc",
3+
"version": "0.1.0",
4+
"os": ["win32"],
5+
"cpu": ["x64"],
6+
"main": "vibetracking-core.win32-x64-msvc.node",
7+
"files": ["vibetracking-core.win32-x64-msvc.node"],
8+
"description": "Native Rust core for vibetracking CLI (Windows x64)",
9+
"license": "MIT",
10+
"engines": {
11+
"node": ">= 16"
12+
},
13+
"publishConfig": {
14+
"registry": "https://registry.npmjs.org/",
15+
"access": "public"
16+
}
17+
}

0 commit comments

Comments
 (0)