beepody
Version:
Beep melody utilities.
86 lines (85 loc) • 2.45 kB
JSON
{
"name": "beepody",
"version": "0.3.33333333",
"description": "Beep melody utilities.",
"license": "GPL-3.0",
"keywords": [
"beep",
"melody",
"grub",
"init",
"tune"
],
"author": {
"name": "Dylan Ferris",
"email": "dylan@psilly.com",
"uri": "https://beepody.com/"
},
"homepage": "https://github.com/Beepody/beepody#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Beepody/beepody.git"
},
"bugs": {
"url": "https://github.com/Beepody/beepody/issues"
},
"funding": "https://github.com/sponsors/acerix",
"main": "dist/index.umd.min.js",
"types": "types/index.d.ts",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.min.js",
"cdn": "dist/index.umd.min.js",
"unpkg": "dist/index.umd.min.js",
"jsdelivr": "dist/index.umd.min.js",
"umd:main": "dist/index.umd.min.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"script": "./dist/index.umd.min.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"types"
],
"bin": {
"beepody": "./dist/cli.js"
},
"devDependencies": {
"@types/eslint": "^8.4.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.31",
"@types/prettier": "^2.6.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"esbuild": "^0.14.38",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"rollup": "^2.70.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.4",
"ts-jest-resolver": "^2.0.0",
"ts-node": "^10.7.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"scripts": {
"doc": "typedoc src/index.ts",
"test": "jest",
"dev": "yarn test --watch",
"lint": "eslint \"*/**/*.{ts,js,json}\"",
"prebuild": "echo \"export default '`node -p \"require('./package.json').version\"`'\" > src/version.ts",
"build-cli": "esbuild src/cli.ts --bundle --platform=node --minify --sourcemap=external --outfile=dist/cli.js",
"build": "rollup --config ./rollup.config.js && yarn build-cli",
"prepublish": "yarn prebuild && yarn doc && yarn lint && yarn test --coverage && yarn build",
"cli": "ts-node src/cli.ts",
"demo": "node demo.js"
}
}