smartscaf/package.json

67 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2017-04-28 12:09:42 +00:00
{
2023-07-10 08:18:08 +00:00
"name": "@push.rocks/smartscaf",
2023-08-18 11:00:37 +00:00
"version": "4.0.15",
"private": false,
2024-04-14 16:16:55 +00:00
"description": "A project aimed at quickly scaffolding projects with support for TypeScript, smart file handling, and template rendering.",
2022-06-25 01:19:16 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-04-28 12:09:42 +00:00
"scripts": {
"test": "(tstest test/)",
2022-06-25 22:31:57 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-06-25 01:19:16 +00:00
"buildDocs": "tsdoc"
2017-04-28 12:09:42 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:16:04 +00:00
"url": "https://code.foss.global/push.rocks/smartscaf.git"
2017-04-28 12:09:42 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartscaf/issues"
},
2024-05-29 12:16:04 +00:00
"homepage": "https://code.foss.global/push.rocks/smartscaf",
2017-04-28 12:09:42 +00:00
"keywords": [
2024-04-14 16:16:55 +00:00
"typescript",
"scaffolding",
"template rendering",
"file handling",
"project setup",
"smart interaction",
"yaml",
"cli tool"
2017-04-28 22:44:23 +00:00
],
"devDependencies": {
2023-06-24 22:50:25 +00:00
"@gitzone/tsbuild": "^2.1.66",
2023-07-25 15:35:13 +00:00
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.4"
2017-04-28 22:44:23 +00:00
},
"dependencies": {
2023-07-25 15:35:13 +00:00
"@push.rocks/lik": "^6.0.3",
"@push.rocks/smartfile": "^10.0.28",
"@push.rocks/smartfm": "^2.0.4",
"@push.rocks/smarthbs": "^3.0.3",
"@push.rocks/smartinteract": "^2.0.14",
"@push.rocks/smartparam": "^1.1.10",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartshell": "^3.0.3",
"@push.rocks/smartyaml": "^2.0.5"
2019-09-10 16:03:33 +00:00
},
"files": [
2020-01-31 14:51:05 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2022-06-25 01:19:16 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-01-31 14:51:05 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-09-10 16:03:33 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2022-06-25 01:19:16 +00:00
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
2019-09-10 16:03:33 +00:00
]
2024-04-14 16:16:55 +00:00
}