-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.07 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.07 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
{
"name": "@d-zero/mcp-server",
"version": "0.5.0",
"description": "D-Zero frontend coding MCP server",
"repository": "https://github.com/d-zero-dev/mcp-server.git",
"author": "D-ZERO Co., Ltd.",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"bin": {
"mcp-server": "./dist/bin.js"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"watch": "tsc --watch --project tsconfig.build.json",
"dev": "tsc --watch --project tsconfig.build.json",
"clean": "tsc --build --clean",
"test": "vitest run",
"lint": "run-s lint:eslint lint:prettier lint:textlint lint:cspell",
"lint:cspell": "cspell --no-progress --show-suggestions \"{*,src/**/*}/\"",
"lint:eslint": "eslint --fix \"{*,src/**/*}.{js,cjs,mjs,jsx,ts,cts,mts,tsx}\"",
"lint:prettier": "prettier --write \"{*,src/**/*}.{md,json,js,cjs,mjs,jsx,ts,cts,mts,tsx}\"",
"lint:textlint": "textlint --fix \"./{*,src/**/*}.{md}\"",
"release:major": "npm version major; npm publish",
"release:minor": "npm version minor; npm publish",
"release:patch": "npm version patch; npm publish",
"prepare": "husky",
"commit": "cz",
"co": "cz",
"up": "npx npm-check-updates --interactive --format group"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@d-zero/cz-config"
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.9.0",
"zod": "3.24.2"
},
"devDependencies": {
"@d-zero/commitlint-config": "5.0.0-alpha.62",
"@d-zero/cspell-config": "5.0.0-alpha.62",
"@d-zero/eslint-config": "5.0.0-alpha.62",
"@d-zero/lint-staged-config": "5.0.0-alpha.62",
"@d-zero/prettier-config": "5.0.0-alpha.62",
"@d-zero/textlint-config": "5.0.0-alpha.62",
"@d-zero/tsconfig": "0.4.1",
"dotenv": "16.5.0",
"husky": "9.1.7",
"npm-run-all2": "7.0.2",
"typescript": "5.8.3",
"vitest": "3.1.1"
},
"packageManager": "npm@11.3.0",
"volta": {
"node": "22.14.0",
"npm": "11.3.0"
}
}