-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.16 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "mcp-server-blocklet",
"private": true,
"version": "0.1.6",
"scripts": {
"dev": "blocklet dev",
"lint": "tsc --noEmit && eslint src api/src --ext .mjs,.js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"start": "cross-env NODE_ENV=development nodemon --exec tsx api/dev.ts -w api",
"clean": "node scripts/build-clean.mjs",
"bundle": "tsc --noEmit && npm run bundle:client && npm run bundle:api",
"bundle:client": "vite build",
"bundle:api": "npm run clean && tsc -p tsconfig.api.json && blocklet bundle --compact --create-release",
"deploy": "npm run bundle && blocklet deploy .blocklet/bundle",
"upload": "npm run bundle && blocklet upload .blocklet/release/blocklet.json",
"prepare": "npx simple-git-hooks",
"bump-version": "zx --quiet scripts/bump-version.mjs"
},
"lint-staged": {
"*.{mjs,js,jsx,ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{css,less,scss,json,graphql}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@aigne/core": "^1.12.0",
"@arcblock/did-auth": "^1.20.2",
"@arcblock/did-auth-storage-nedb": "^1.7.1",
"@blocklet/logger": "^1.16.42",
"@blocklet/sdk": "^1.16.42",
"@blocklet/mcp": "^1.10.2",
"@ocap/client": "^1.20.2",
"@ocap/mcrypto": "^1.20.2",
"@ocap/wallet": "^1.20.2",
"axios": "^1.7.9",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv-flow": "^4.1.0",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"morgan": "^1.10.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@arcblock/eslint-config": "^0.3.3",
"@arcblock/eslint-config-ts": "^0.3.3",
"@blocklet/js-sdk": "^1.16.42",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/dotenv-flow": "^3.3.3",
"@types/express": "^4.17.21",
"@types/node": "^20.17.19",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"bumpp": "^9.11.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^15.4.3",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.1",
"prettier-plugin-import-sort": "^0.0.7",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-router-dom": "^6.29.0",
"rimraf": "^5.0.10",
"simple-git-hooks": "^2.11.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vite": "^5.4.14",
"vite-plugin-blocklet": "^0.9.32",
"vite-plugin-svgr": "^4.3.0",
"zx": "^8.3.2"
},
"importSort": {
".js, .jsx, .mjs": {
"parser": "babylon",
"style": "module"
},
".ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"resolutions": {
"pkce-challenge": "https://github.com/AIGNE-io/pkce-challenge#dist"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}