isola-core 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "isola-core",
3
+ "version": "0.2.2",
4
+ "description": "Node.js SDK for Isola sandboxed code execution",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "napi": {
11
+ "binaryName": "isola",
12
+ "npmClient": "npm",
13
+ "targets": [
14
+ "x86_64-unknown-linux-gnu",
15
+ "aarch64-apple-darwin"
16
+ ]
17
+ },
18
+ "scripts": {
19
+ "build": "pnpm run tsc && napi build --release --platform --js isola.js --manifest-path ../Cargo.toml --output-dir dist",
20
+ "lint": "biome check src tests && tsc --noEmit -p tsconfig.json",
21
+ "tsc": "tsc -p tsconfig.json",
22
+ "test": "vitest run",
23
+ "test:watch": "vitest"
24
+ },
25
+ "devDependencies": {
26
+ "@biomejs/biome": "^2.4.8",
27
+ "@napi-rs/cli": "^3",
28
+ "@types/node": "^24.0.0",
29
+ "typescript": "^6.0.0",
30
+ "vitest": "^4.0.0"
31
+ },
32
+ "packageManager": "pnpm@10.32.1",
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "license": "Apache-2.0",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/brian14708/isola"
40
+ },
41
+ "optionalDependencies": {
42
+ "isola-core-linux-x64-gnu": "0.2.2",
43
+ "isola-core-darwin-arm64": "0.2.2"
44
+ }
45
+ }