UNPKG

consolev

Version:

Congrats! You just saved yourself hours of work by bootstrapping this project with TSDX. Let’s get you oriented with what’s here and how to use it.

59 lines (58 loc) 1.12 kB
{ "version": "1.1.1", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "consolev", "author": "lomocc", "module": "dist/consolev.esm.js", "size-limit": [ { "path": "dist/consolev.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/consolev.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^4.12.0", "husky": "^6.0.0", "size-limit": "^4.12.0", "tsdx": "^0.14.1", "tslib": "^2.3.0", "typescript": "^4.3.2" }, "resolutions": { "typescript": "^4.3.2" } }