UNPKG

mazey-wechat-launch-app

Version:
110 lines 3.64 kB
{ "name": "mazey-wechat-launch-app", "version": "2.4.4", "description": "Launch App in WeChat/Weixin", "main": "lib/index.cjs.js", "module": "lib/index.esm.js", "typings": "lib/index.d.ts", "files": [ "lib", "README.md", "LICENSE" ], "mainEntryPointFilePath": "lib/index.d.ts", "unpkg": "lib/launch-app.min.js", "jsdelivr": "lib/launch-app.min.js", "jest": { "testPathIgnorePatterns": [ "/dist/", "/lib/" ] }, "repository": { "type": "git", "url": "git+https://github.com/chengchuu/mazey-wechat-launch-app.git" }, "keywords": [ "wechat", "weixin", "launch", "app", "webview", "webkit", "ios", "android", "x5", "javascript", "function" ], "author": { "name": "Cheng", "email": "mazeyqian@gmail.com", "url": "https://github.com/chengchuu" }, "license": "MIT", "bugs": { "url": "https://github.com/chengchuu/mazey-wechat-launch-app/issues" }, "homepage": "https://chengchuu.github.io/mazey-wechat-launch-app/", "devDependencies": { "@babel/core": "^7.29.7", "@babel/preset-env": "^7.29.7", "@babel/preset-typescript": "^7.29.7", "@commitlint/cli": "^21.2.1", "@commitlint/config-conventional": "^21.2.0", "@eslint/js": "^10.0.1", "@rollup/plugin-babel": "^7.1.0", "@rollup/plugin-commonjs": "^29.0.3", "@rollup/plugin-node-resolve": "^16.0.3", "@rollup/plugin-terser": "^1.0.0", "@types/jquery": "^3.5.17", "@types/js-sha1": "^0.6.0", "bootstrap": "5.3.8", "bootstrap-icons": "^1.13.1", "cross-env": "^10.1.0", "css-loader": "^7.1.4", "eslint": "^10.6.0", "globals": "^17.7.0", "html-webpack-plugin": "^5.6.7", "husky": "^9.1.7", "jest": "^30.4.2", "jest-environment-jsdom": "^30.4.1", "lint-staged": "^16.4.0", "mini-css-extract-plugin": "^2.10.2", "prettier": "^3.9.5", "rollup": "^4.62.2", "rollup-plugin-typescript2": "^0.37.0", "ts-loader": "^9.6.2", "tslib": "^2.8.1", "typedoc": "^0.28.20", "typescript": "5.9.3", "typescript-eslint": "^8.63.0", "webpack": "^5.108.4", "webpack-cli": "^7.2.1", "webpack-dev-server": "^6.0.0" }, "dependencies": { "core-js": "^3.49.0", "jquery": "^3.7.1", "js-sha1": "^0.6.0", "mazey": "^5.7.3" }, "scripts": { "dev": "webpack serve --config ./scripts/webpack.config.dev.js", "build": "rollup --config ./scripts/rollup.config.mjs", "build:dev": "webpack --config ./scripts/webpack.config.dev.js", "build:site": "cross-env GITHUB_PAGES=true webpack --mode production --config ./scripts/webpack.config.dev.js", "test": "jest --runInBand", "typecheck": "tsc --noEmit", "lint": "eslint src examples site typing.d.ts eslint.config.mjs commitlint.config.js project.config.js scripts test", "lint:fix": "npm run lint -- --fix", "format": "prettier --write .", "format:check": "prettier --check .", "docs": "typedoc --out .pages-api --entryPoints src/index.ts --readme README.md --excludeProtected --excludePrivate --excludeInternal --hideGenerator && npm run build:site && node scripts/build-pages.mjs && npm run seo:validate && npm run pwa:validate", "seo:validate": "node scripts/validate-seo.mjs", "pwa:validate": "node scripts/validate-pwa.mjs", "pwa:preview": "npm run docs && node scripts/preview-pages.mjs", "preview": "npm run typecheck && npm run lint && npm run build && npm run test && npm run docs", "release": "npm run preview && cross-env SCRIPTS_NPM_PACKAGE_VERSION=$npm_package_version node ./scripts/release.js" } }