123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "name": "tsrpc-miniapp",
- "version": "3.4.16",
- "description": "TSRPC MiniApp Client (Wechat App, QQ App...)",
- "main": "index.js",
- "exports": {
- "require": "./index.js",
- "import": "./index.mjs"
- },
- "scripts": {
- "test:install": "cd test/server && npm i & cd ../miniapp && npm i & cd ../../",
- "test": "npm run test:install && cd test/server && START npm run dev && cd ../miniapp && npm run dev && echo \"请使用开发者工具打开test/miniapp目录完成测试\" && cd ../../",
- "build": "npm run build:js && npm run build:dts && shx cp package.json LICENSE README.md dist/",
- "build:js": "shx rm -rf dist && npx rollup -c",
- "build:dts": "shx rm -rf lib && npx tsc && npx api-extractor run --local --verbose && node scripts/postDts.js && shx rm -rf lib",
- "build:doc": "shx rm -rf docs/api && npx api-documenter markdown --input temp --output docs/api"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/k8w/tsrpc-miniapp.git"
- },
- "author": "",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/k8w/tsrpc-miniapp/issues"
- },
- "homepage": "https://github.com/k8w/tsrpc-miniapp#readme",
- "types": "index.d.ts",
- "devDependencies": {
- "@microsoft/api-documenter": "^7.24.2",
- "@microsoft/api-extractor": "^7.43.1",
- "@rollup/plugin-commonjs": "^19.0.2",
- "@rollup/plugin-node-resolve": "^13.3.0",
- "chai": "^4.4.1",
- "kunit": "^1.3.0",
- "rollup": "^2.79.1",
- "rollup-plugin-typescript2": "^0.36.0",
- "shx": "^0.3.4",
- "typescript": "^4.9.5",
- "webpack-cli": "^4.10.0"
- },
- "dependencies": {
- "tsrpc-base-client": "^2.1.15"
- }
- }
|