Files
smartdeno/package.json
T

68 lines
1.6 KiB
JSON
Raw Normal View History

2024-03-17 00:53:32 +01:00
{
"name": "@push.rocks/smartdeno",
2026-04-30 17:32:30 +00:00
"version": "1.2.1",
2024-03-17 00:53:32 +01:00
"private": false,
2024-04-14 17:29:06 +02:00
"description": "A module to run Deno scripts from Node.js, including functionalities for downloading Deno and executing Deno scripts.",
2024-03-17 00:53:32 +01: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 --timeout 60)",
"build": "tsbuild --web",
2024-03-17 00:53:32 +01:00
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2024-03-17 00:53:32 +01:00
},
"dependencies": {
"@push.rocks/smartarchive": "^5.2.2",
"@push.rocks/smartfs": "^1.5.1",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartshell": "^3.3.8",
"@push.rocks/smartunique": "^3.0.9"
2024-03-17 00:53:32 +01:00
},
"repository": {
"type": "git",
2024-05-29 14:12:35 +02:00
"url": "https://code.foss.global/push.rocks/smartdeno.git"
2024-03-17 00:53:32 +01:00
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartdeno/issues"
2024-03-17 00:53:32 +01:00
},
2024-05-29 14:12:35 +02:00
"homepage": "https://code.foss.global/push.rocks/smartdeno",
2024-03-17 00:53:32 +01:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2024-03-17 00:53:32 +01:00
"npmextra.json",
"readme.md"
2024-04-14 17:29:06 +02:00
],
"keywords": [
"Deno",
"Node.js",
"Script Execution",
"TypeScript",
"Development Tools",
"Deno Download",
"Code Execution",
"Ephemeral Execution",
"Cross-platform",
"In-memory"
],
"packageManager": "pnpm@10.28.2"
}