-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
83 lines (83 loc) · 2.11 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
{
"name": "dingtalk-stream",
"version": "2.1.4",
"description": "Nodejs SDK for DingTalk Stream Mode API, Compared with the webhook mode, it is easier to access the DingTalk",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./client": {
"types": "./dist/client.d.ts",
"require": "./dist/client.cjs",
"import": "./dist/client.mjs"
},
"./constants": {
"types": "./dist/constants.d.ts",
"require": "./dist/constants.cjs",
"import": "./dist/constants.mjs"
},
"./*": "./*"
},
"scripts": {
"start": "ts-node-esm example/index.ts",
"build": "rimraf dist && rollup -c",
"dev": "rollup -c --watch --watch.include 'src/**' -m inline",
"prepublishOnly": "pnpm build",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-dingtalk/dingtalk-stream-sdk-nodejs.git"
},
"keywords": [
"DingTalk Stream Mode",
"Nodejs",
"SDK"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-dingtalk/dingtalk-stream-sdk-nodejs/issues"
},
"files": [
"dist",
"*.d.ts",
"*.mjs"
],
"homepage": "https://github.com/open-dingtalk/dingtalk-stream-sdk-nodejs#readme",
"dependencies": {
"axios": "^1.4.0",
"debug": "^4.3.4",
"ws": "^8.13.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@types/debug": "^4.1.8",
"@types/node": ">=16",
"@types/ws": "^8.5.5",
"rimraf": "^5.0.1",
"rollup": "^3.28.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vite": "^4.4.9"
}
}