UNPKG

web-utility

Version:

Web front-end toolkit based on TypeScript

91 lines (90 loc) 2.58 kB
{ "name": "web-utility", "version": "4.5.1", "license": "LGPL-3.0", "author": "shiy2008@gmail.com", "description": "Web front-end toolkit based on TypeScript", "keywords": [ "web", "front-end", "utility", "toolkit", "typescript" ], "homepage": "https://web-cell.dev/web-utility/", "repository": { "type": "git", "url": "git+https://github.com/EasyWebApp/web-utility.git" }, "bugs": { "url": "https://github.com/EasyWebApp/web-utility/issues" }, "source": "source/index.ts", "types": "dist/index.d.ts", "main": "dist/index.js", "module": "dist/index.esm.js", "dependencies": { "@swc/helpers": "^0.5.17", "regenerator-runtime": "^0.14.1" }, "peerDependencies": { "element-internals-polyfill": ">=1", "typescript": ">=4.1" }, "devDependencies": { "@parcel/packager-ts": "~2.15.4", "@parcel/transformer-typescript-types": "~2.15.4", "@peculiar/webcrypto": "^1.5.0", "@types/jest": "^29.5.14", "@types/node": "^22.17.0", "@webcomponents/webcomponentsjs": "^2.8.0", "core-js": "^3.44.0", "husky": "^9.1.7", "intersection-observer": "^0.12.2", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "lint-staged": "^16.1.4", "open-cli": "^8.0.0", "parcel": "~2.15.4", "prettier": "^3.6.2", "ts-jest": "^29.4.1", "typedoc": "^0.28.9", "typedoc-plugin-mdn-links": "^5.0.7", "typescript": "~5.9.2" }, "pnpm": { "onlyBuiltDependencies": [ "@parcel/watcher", "@swc/core", "core-js", "lmdb", "msgpackr-extract" ] }, "prettier": { "singleQuote": true, "trailingComma": "none", "arrowParens": "avoid", "tabWidth": 4 }, "lint-staged": { "*.{md,json,yml,ts}": "prettier --write" }, "jest": { "preset": "ts-jest", "testEnvironment": "jsdom" }, "browserslist": "> 0.5%, last 2 versions, not dead, IE 11", "targets": { "main": { "optimize": true } }, "scripts": { "prepare": "husky", "test": "lint-staged && jest --no-cache", "build": "rm -rf dist/ docs/ && typedoc source/ && parcel build", "start": "typedoc source/ && open-cli docs/index.html", "prepublishOnly": "npm test && npm run build" } }