Urara-Blog/node_modules/.pnpm-store/v3/files/18/305cd26698cc0cb61ffca7c2154b5757a5a0ded5e311530eb058cbdb7676271c0246ed0c41d72207f805a24ae75ed0a84a8b9b6b5df307bf1dbeabaeb844ee
2022-08-14 01:14:53 +08:00

47 lines
1.2 KiB
Text

{
"name": "kolorist",
"version": "1.5.1",
"description": "A tiny utility to colorize stdin/stdout",
"main": "dist/cjs/index.js",
"module": "dist/module/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "TS_IGNORE_ERROR=true mocha -r ts-node/register --extension ts,js src/*.test.ts",
"build": "rimraf dist/ && tsc && tsc -p tsconfig.module.json && tsc -p tsconfig.esm.json && node tools/post-build.js",
"prepublishOnly": "npm run build"
},
"author": "Marvin Hagemeister <hello@marvinh.dev>",
"repository": {
"type": "git",
"url": "https://github.com/marvinhagemeister/kolorist.git"
},
"license": "MIT",
"devDependencies": {
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"mocha": "^8.3.2",
"node-pty": "^0.10.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"exports": {
".": {
"browser": "./dist/module/index.js",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json",
"./": "./*"
},
"files": [
"dist/",
"screenshot.png"
],
"prettier": {
"useTabs": true,
"arrowParens": "avoid",
"singleQuote": true
}
}