UNPKG

web-utility

Version:

Web front-end toolkit based on TypeScript

82 lines (81 loc) 2.39 kB
{ "name": "web-utility", "version": "4.4.3", "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.15", "element-internals-polyfill": "^1.3.13", "regenerator-runtime": "^0.14.1" }, "peerDependencies": { "typescript": ">=4.1" }, "devDependencies": { "@parcel/packager-ts": "~2.13.3", "@parcel/transformer-typescript-types": "~2.13.3", "@peculiar/webcrypto": "^1.5.0", "@types/jest": "^29.5.14", "@types/node": "^22.13.4", "@webcomponents/webcomponentsjs": "^2.8.0", "core-js": "^3.40.0", "husky": "^9.1.7", "intersection-observer": "^0.12.2", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "lint-staged": "^15.4.3", "open-cli": "^8.0.0", "parcel": "~2.13.3", "prettier": "^3.5.1", "ts-jest": "^29.2.5", "typedoc": "^0.27.7", "typedoc-plugin-mdn-links": "^4.0.13", "typescript": "~5.7.3" }, "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" } }