mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "@logto/connector-wechat-native",
|
|
"version": "1.0.0-alpha.4",
|
|
"description": "WeChat native connector implementation.",
|
|
"main": "./lib/index.js",
|
|
"exports": "./lib/index.js",
|
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
"license": "MPL-2.0",
|
|
"private": true,
|
|
"files": [
|
|
"lib",
|
|
"docs",
|
|
"logo.svg",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"precommit": "lint-staged",
|
|
"build": "rm -rf lib/ && tsc -p tsconfig.build.json",
|
|
"lint": "eslint --ext .ts src",
|
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
|
"dev": "rm -rf lib/ && tsc-watch -p tsconfig.build.json --preserveWatchOutput --onSuccess \"node ./lib/index.js\"",
|
|
"test": "jest",
|
|
"test:coverage": "jest --coverage --silent",
|
|
"prepack": "pnpm build"
|
|
},
|
|
"dependencies": {
|
|
"@logto/connector-types": "^1.0.0-alpha.4",
|
|
"@logto/schemas": "^1.0.0-alpha.4",
|
|
"@logto/shared": "^1.0.0-alpha.3",
|
|
"@silverhand/essentials": "^1.1.0",
|
|
"@silverhand/jest-config": "^0.14.0",
|
|
"got": "^11.8.2",
|
|
"zod": "^3.14.3"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/types": "^27.5.1",
|
|
"@silverhand/eslint-config": "^0.14.0",
|
|
"@silverhand/ts-config": "^0.14.0",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/node": "^16.3.1",
|
|
"eslint": "^8.10.0",
|
|
"jest": "^27.5.1",
|
|
"jest-matcher-specific-error": "^1.0.0",
|
|
"lint-staged": "^13.0.0",
|
|
"nock": "^13.2.2",
|
|
"prettier": "^2.3.2",
|
|
"ts-jest": "^27.1.1",
|
|
"tsc-watch": "^5.0.0",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"engines": {
|
|
"node": "^16.0.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "@silverhand"
|
|
},
|
|
"prettier": "@silverhand/eslint-config/.prettierrc"
|
|
}
|