smartdeno/package.json

68 lines
1.7 KiB
JSON
Raw Normal View History

2024-03-16 23:53:32 +00:00
{
"name": "@push.rocks/smartdeno",
2024-03-17 20:24:26 +00:00
"version": "1.0.3",
2024-03-16 23:53:32 +00:00
"private": false,
2024-04-14 15:29:06 +00:00
"description": "A module to run Deno scripts from Node.js, including functionalities for downloading Deno and executing Deno scripts.",
2024-03-16 23:53:32 +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/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.25",
"@git.zone/tsbundle": "^2.0.5",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.44",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.8.7"
},
"dependencies": {
2024-03-17 20:24:25 +00:00
"@api.global/typedserver": "^3.0.27",
"@push.rocks/lik": "^6.0.14",
2024-03-16 23:53:32 +00:00
"@push.rocks/smartarchive": "^4.0.22",
2024-03-17 20:24:25 +00:00
"@push.rocks/smartfile": "^11.0.4",
2024-03-16 23:53:32 +00:00
"@push.rocks/smartpath": "^5.0.11",
2024-03-17 20:24:25 +00:00
"@push.rocks/smartshell": "^3.0.4",
"@push.rocks/smartunique": "^3.0.8"
2024-03-16 23:53:32 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:12:35 +00:00
"url": "https://code.foss.global/push.rocks/smartdeno.git"
2024-03-16 23:53:32 +00:00
},
"bugs": {
"url": "https://gitlab.com/push.rocks/smartdeno/issues"
},
2024-05-29 12:12:35 +00:00
"homepage": "https://code.foss.global/push.rocks/smartdeno",
2024-03-16 23:53:32 +00:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 15:29:06 +00:00
],
"keywords": [
"Deno",
"Node.js",
"Script Execution",
"TypeScript",
"Development Tools",
"Deno Download",
"Code Execution",
"Scripting Server",
"Ephemeral Execution",
"Cross-platform"
2024-03-16 23:53:32 +00:00
]
2024-04-14 15:29:06 +00:00
}