This commit is contained in:
2026-02-09 09:32:20 +00:00
commit f23ced9c47
22 changed files with 9064 additions and 0 deletions

62
package.json Normal file
View File

@@ -0,0 +1,62 @@
{
"name": "@git.zone/tsrust",
"version": "1.0.1",
"private": false,
"description": "A tool for compiling Rust projects, detecting Cargo workspaces, building with cargo, and placing binaries in a conventional dist_rust directory.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"bin": {
"tsrust": "./cli.js"
},
"scripts": {
"test": "tstest test/test.ts --verbose",
"build": "tsbuild --web --skiplibcheck"
},
"repository": {
"type": "git",
"url": "https://code.foss.global/git.zone/tsrust.git"
},
"keywords": [
"Rust",
"cargo",
"compilation",
"CLI tool",
"build tool",
"workspace",
"binary"
],
"author": "Task Venture Capital GmbH",
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/git.zone/tsrust/issues"
},
"homepage": "https://code.foss.global/git.zone/tsrust#README",
"dependencies": {
"@push.rocks/early": "^4.0.4",
"@push.rocks/smartcli": "^4.0.19",
"@push.rocks/smartfile": "^13.1.2",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartshell": "^3.0.6",
"smol-toml": "^1.3.1"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.1.2",
"@git.zone/tsrun": "^2.0.1",
"@git.zone/tstest": "^3.1.4",
"@types/node": "^22.15.0"
},
"files": [
"ts/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
]
}