UNPKG

typed-wx-api

Version:
66 lines (65 loc) 1.45 kB
{ "name": "typed-wx-api", "version": "1.2.0", "description": "Typed Wechat API", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "format": "prettier --write src __tests__", "test": "jest", "build": "rm -rf dist && tsc", "doc": "typedoc", "buildAndPublish": "npm run format && npm run build && npm publish" }, "author": "logerzhu", "repository": { "type": "git", "url": "git@github.com:logerzhu/typed-wx-api.git" }, "bugs": { "url": "https://github.com/logerzhu/typed-wx-api/issues" }, "homepage": "https://github.com/logerzhu/typed-wx-api", "license": "MIT", "keywords": [ "TypeScript", "Wechat" ], "dependencies": { "axios": "^1.3.4", "form-data": "^4.0.0", "formstream": "^1.1.1", "xml2js": "^0.4.23" }, "devDependencies": { "@types/jest": "^29.4.0", "@types/node": "^16.17.1", "@types/xml2js": "^0.4.9", "jest": "^29.4.3", "pre-commit": "^1.2.2", "prettier": "2.2.1", "ts-jest": "^29.0.5", "ts-node": "^9.1.1", "typedoc": "^0.23.23", "typedoc-plugin-markdown": "^3.14.0", "typescript": "^4.9.4" }, "pre-commit": [ "format" ], "prettier": { "overrides": [ { "files": [ "*.ts", "*.tsx" ], "options": { "singleQuote": true, "semi": false, "trailingComma": "none" } } ] } }