1
0
mirror of https://github.com/garraflavatra/trmclr.git synced 2024-11-21 21:38:57 +01:00
trmclr/package.json
2024-08-09 15:17:52 +02:00

51 lines
1.2 KiB
JSON

{
"name": "trmclr",
"version": "1.1.0",
"description": "Terminal colors but easier",
"author": "Romein van Buren <romein@vburen.nl>",
"license": "MIT",
"main": "dist/index.cjs",
"module": "index.mjs",
"types": "dist/index.d.mts",
"type": "module",
"files": [
"index.mjs",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/garraflavatra/trmclr.git"
},
"keywords": [
"color",
"colors",
"terminal",
"console"
],
"bugs": {
"url": "https://github.com/garraflavatra/trmclr/issues"
},
"homepage": "https://github.com/garraflavatra/trmclr#readme",
"scripts": {
"build": "rm -rf dist && tsc && rollup index.mjs -f umd -n trmclr -o dist/index.cjs",
"lint": "eslint index.js"
},
"devDependencies": {
"@garraflavatra/yeslint": "^1.2.0",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"rollup": "^4.20.0",
"typescript": "^5.5.4"
},
"eslintConfig": {
"extends": "./node_modules/@garraflavatra/yeslint/configs/generic.js",
"ignorePatterns": [
"dist"
],
"parserOptions": {
"sourceType": "module"
}
}
}