@gvray/eskit
Version:
A rich and colorful toolkit about typescript and javascript.
57 lines • 1.45 kB
JSON
{
"name": "@gvray/eskit",
"version": "1.0.1",
"description": "A rich and colorful toolkit about typescript and javascript.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "esm/index.js",
"exports": {
"import": "./esm/index.js",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"files": [
"esm",
"lib",
"README.md"
],
"keywords": [
"util",
"eskit",
"tskit",
"toolkit",
"js-util",
"ts-util",
"js-toolkit",
"ts-toolkit"
],
"author": {
"name": "GavinRay",
"email": "gavinraydev@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gvray/toolkit/issues"
},
"homepage": "https://github.com/gvray/toolkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gvray/toolkit.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "run-p build:*",
"build:esm": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir esm",
"build:cjs": "tsc -p tsconfig.json --target ES5 --module commonjs --outDir lib",
"clean": "rimraf lib esm",
"tsc": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"md": "node ./scripts/jsdoc2md.js",
"docs": "typedoc",
"doc": "pnpm run docs && pnpm -C ../../ append-api ./packages/eskit docs",
"pub": "echo 'Use root-level changeset publish to release packages'"
}
}