-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.25 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.25 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
{
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashscope/claude-code-config.git"
},
"name": "@dashscope-js/claude-code-config",
"version": "0.1.8",
"description": "Default configuration for claude-code-router with DashScope support",
"main": "index.js",
"bin": {
"ccr-dashscope": "bin/claude-code-router-config.js"
},
"scripts": {
"lint": "echo lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"ci": "npm run test"
},
"files": [
"bin",
"README.md",
"README.zh-CN.md",
"package.json"
],
"keywords": [
"claude",
"code-router",
"dashscope",
"configuration"
],
"author": "DashScope",
"license": "Apache-2.0",
"dependencies": {
"fs-extra": "^11.3.0"
},
"devDependencies": {
"jest": "^29.7.0"
},
"engines": {
"node": ">=14.0.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"bin/**/*.js",
"!**/node_modules/**"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}