fix(core): update

This commit is contained in:
2024-03-13 20:02:12 +01:00
parent 3357ca8c2b
commit 5e9bbfaf1b
14 changed files with 5989 additions and 931 deletions

View File

@@ -3,15 +3,16 @@
"version": "2.0.1",
"private": false,
"description": "colors for beautylog",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"scripts": {
"test": "(tsrun test/test.ts)",
"build": "(npmts)"
"test": "(tstest test/)",
"build": "(tsbuild --allowimplicitany)",
"buildDocs": "tsdoc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/beautycolor.git"
"url": "git+https://gitlab.com/push.rocks/consolecolor.git"
},
"keywords": [
"color",
@@ -22,15 +23,33 @@
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/beautycolor/issues"
"url": "https://gitlab.com/push.rocks/consolecolor/issues"
},
"homepage": "https://gitlab.com/pushrocks/beautycolor#README",
"homepage": "https://gitlab.com/push.rocks/consolecolor#readme",
"dependencies": {
"ansi-256-colors": "^1.1.0"
},
"devDependencies": {
"@gitzone/tsrun": "^1.1.9",
"@pushrocks/tapbundle": "^3.0.1",
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsrun": "^1.1.9",
"@git.zone/tstest": "^1.0.88",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^10.5.2"
}
},
"type": "module",
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
}