Files
smartrust/package.json
T

56 lines
1.3 KiB
JSON
Raw Normal View History

2026-02-08 12:28:51 +00:00
{
"name": "@push.rocks/smartrust",
2026-04-30 08:39:35 +00:00
"version": "1.4.0",
2026-02-08 12:28:51 +00:00
"private": false,
"description": "A type-safe bridge between JavaScript engines and Rust binaries.",
2026-02-08 12:28:51 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --verbose --logfile --timeout 60)",
"build": "(tsbuild tsfolders)",
2026-02-08 12:28:51 +00:00
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2026-02-08 12:28:51 +00:00
},
"dependencies": {
"@push.rocks/smartpath": "^6.0.0"
},
"files": [
"ts/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
"readme.md"
],
"keywords": [
"rust",
"typescript",
"ipc",
"bridge",
"stdio",
"socket",
"binary",
"transport"
],
"homepage": "https://code.foss.global/push.rocks/smartrust#readme",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartrust.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartrust/issues"
},
"packageManager": "pnpm@10.28.2"
2026-02-08 12:28:51 +00:00
}