1
0
mirror of https://github.com/garraflavatra/trmclr.git synced 2024-11-22 07:47:34 +01:00
trmclr/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2022-10-09 10:10:43 +02:00
{
"name": "trmclr",
2024-08-09 14:33:57 +02:00
"version": "1.0.1",
2022-10-09 10:10:43 +02:00
"description": "Terminal colors but easier",
2024-08-09 15:17:30 +02:00
"author": "Romein van Buren <romein@vburen.nl>",
"license": "MIT",
"main": "dist/index.cjs",
"module": "index.mjs",
"types": "dist/index.d.mts",
"type": "module",
2022-10-09 10:10:43 +02:00
"files": [
2024-08-09 15:17:30 +02:00
"index.mjs",
"dist"
2022-10-09 10:10:43 +02:00
],
"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",
2024-08-09 14:03:36 +02:00
"scripts": {
2024-08-09 15:17:30 +02:00
"build": "rm -rf dist && tsc && rollup index.mjs -f umd -n trmclr -o dist/index.cjs",
2024-08-09 14:28:46 +02:00
"lint": "eslint index.js"
2024-08-09 14:03:36 +02:00
},
2022-10-09 10:10:43 +02:00
"devDependencies": {
2024-08-09 14:28:46 +02:00
"@garraflavatra/yeslint": "^1.2.0",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
2024-08-09 15:17:30 +02:00
"rollup": "^4.20.0",
2024-08-09 14:28:46 +02:00
"typescript": "^5.5.4"
},
"eslintConfig": {
"extends": "./node_modules/@garraflavatra/yeslint/configs/generic.js",
2024-08-09 15:17:30 +02:00
"ignorePatterns": [
"dist"
],
2024-08-09 14:28:46 +02:00
"parserOptions": {
"sourceType": "module"
}
2022-10-09 10:10:43 +02:00
}
}