-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.87 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.87 KB
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
{
"name": "dashscope-sdk-official",
"version": "1.25.2",
"description": "Official Node.js SDK for Alibaba Cloud Model Studio (DashScope) APIs",
"keywords": [
"dashscope-sdk-official",
"DashScope",
"Model Studio",
"Qwen",
"dashscope",
"千问",
"灵积",
"百炼"
],
"files": [
"lib",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/dashscope/dashscope-sdk-nodejs.git"
},
"bugs": {
"url": "https://github.com/dashscope/dashscope-sdk-nodejs/issues"
},
"homepage": "https://github.com/dashscope/dashscope-sdk-nodejs#readme",
"scripts": {
"build": "rm -rf lib && tsup",
"typecheck": "tsc --noEmit",
"test": "mocha 'test/**/*.test.ts'",
"test:live": "cross-env DASHSCOPE_LIVE_API=1 mocha 'test/**/*.test.ts' --timeout 300000",
"lint": "eslint src test",
"prepublishOnly": "npm run build"
},
"mocha": {
"require": [
"ts-node/register",
"./test/nock-hooks.cjs"
]
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.10",
"@types/ws": "^8.18.1",
"cross-env": "^10.1.0",
"dotenv": "^16.4.7",
"eslint": "^10.1.0",
"mocha": "^11.1.0",
"nock": "^14.0.11",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.58.0"
},
"dependencies": {
"axios": "^1.8.4",
"ws": "^8.18.1"
}
}