generated from cheqd/.github
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@cheqd/connector-telegram",
"version": "1.4.0",
"description": "Telegram OAuth connector for LogTo",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"license": "Apache-2.0",
"repository": "https://github.com/cheqd/connector-telegram.git",
"keywords": [
"cheqd",
"logto",
"telegram",
"oauth"
],
"bugs": {
"url": "https://github.com/cheqd/connector-telegram/issues"
},
"homepage": "https://github.com/cheqd/connector-telegram#readme",
"main": "./lib/index.js",
"module": "./lib/index.js",
"exports": "./lib/index.js",
"type": "module",
"files": [
"lib",
"**/*.svg",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"precommit": "lint-staged",
"build:test": "rm -rf lib/ && tsc -p tsconfig.test.json",
"build": "rm -rf lib/ && tsc -p tsconfig.build.json --noEmit && rollup -c",
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput --incremental",
"format": "prettier --write 'src/**/*.{js,ts,cjs,mjs}'",
"lint": "eslint --ext .ts src",
"lint:report": "npm lint --format json --output-file report.json",
"test": "npm build:test && NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "npm run test --coverage --silent"
},
"dependencies": {
"@logto/connector-kit": "4.0.0",
"@silverhand/essentials": "2.8.4",
"got": "^14.2.1",
"snakecase-keys": "^5.5.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@silverhand/eslint-config": "3.0.1",
"@silverhand/jest-config": "4.0.0",
"@silverhand/ts-config": "^4.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/supertest": "^2.0.16",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-matcher-specific-error": "^1.0.0",
"lint-staged": "^15.2.2",
"nock": "^13.5.4",
"prettier": "^2.8.8",
"rollup": "^3.29.4",
"rollup-plugin-summary": "^2.0.0",
"semantic-release": "^22.0.12",
"supertest": "^6.3.4",
"typescript": "~5.1.6"
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}