Files
extism/node/package.json
Benjamin Eckel c94c221854 release: v0.2.0 (#209)
Let's get the last changes in this week for a release. Will hold this PR
until all changes we want are in.

Release checklist:
- [x] test: updates across CI to test for Host Function output /
integration (#219)
- this should probably look something like a grep for some kind of
output proving guest/host interop?
- [x] Fix for userData pointer issue in Go host functions (#220) 
- [x] docs: Host Functions in SDKs
  - [ ] sdk: C 
  - [ ] sdk: C++ 
  - [ ] sdk: Python
  - [ ] sdk: Node
  - [ ] sdk: Go
  - [ ] sdk: Rust 
- [x] docs: Manifest property names (http `headers` & memory
`max_pages`)
- [ ] blog: announcing v0.2.0, including host functions, Zig SDK/PDK,
Java SDK, .NET SDK, + ...
2023-01-19 10:56:00 -06:00

51 lines
1.1 KiB
JSON

{
"name": "@extism/extism",
"version": "0.2.0",
"description": "Extism Host SDK for Node",
"keywords": [
"extism",
"webassembly",
"wasm",
"plugins",
"extension"
],
"author": "The Extism Authors <oss@extism.org>",
"license": "BSD-3-Clause",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://extism.org",
"repository": {
"type": "git",
"url": "https://github.com/extism/extism.git"
},
"scripts": {
"prepare": "npm run build",
"example": "npm run build && node example.js",
"build": "tsc",
"test": "jest --coverage"
},
"dependencies": {
"@types/ref-array-di": "^1.2.5",
"ffi-napi": "^4.0.3",
"ref-array-di": "^1.2.2",
"ref-napi": "^3.0.3",
"ref-struct-di": "^1.1.1",
"ref-union-di": "^1.0.1"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/ffi-napi": "^4.0.6",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.4",
"jest": "^29.2.2",
"prettier": "2.8.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.18",
"typescript": "^4.8.4"
}
}