Files
vtracer/nodejs/package.json
T
Chris Tsang 2500df76b5
Rust / test (push) Has been cancelled
Rust / wasm-safety (core) (push) Has been cancelled
Rust / Node package (push) Has been cancelled
Release 1.0.0-alpha.4
Bump every package version to 1.0.0-alpha.4 (PyPI 1.0.0a4) and promote the
CHANGELOG [Unreleased] section to 1.0.0-alpha.4. Refresh the tracked lockfile.
App download links are intentionally left at 1.0.0-alpha.3 (desktop app
release lands separately).
2026-08-29 01:02:58 +01:00

36 lines
1002 B
JSON

{
"name": "@visioncortex/vtracer",
"version": "1.0.0-alpha.4",
"description": "Raster to vector graphics converter (SVG). WebAssembly build of the vtracer framework — no native dependencies.",
"main": "index.js",
"types": "index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"index.js",
"index.d.ts",
"pkg/vtracer_wasm.js",
"pkg/vtracer_wasm_bg.wasm",
"pkg/vtracer_wasm.d.ts",
"pkg/vtracer_wasm_bg.wasm.d.ts"
],
"scripts": {
"build": "wasm-pack build --target nodejs --out-dir pkg",
"test": "node test.js",
"publish:local": "node scripts/publish.mjs",
"prepublishOnly": "npm run build"
},
"keywords": ["svg", "vectorization", "raster", "wasm", "computer-graphics"],
"license": "MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/visioncortex/vtracer.git",
"directory": "nodejs"
},
"homepage": "http://www.visioncortex.org/vtracer",
"engines": {
"node": ">=16"
}
}