-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.02 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
{
"name": "jsx-workspace",
"version": "1.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"packages/cep-extensions/*"
],
"scripts": {
"dev": "yarn workspace @jsx-workspace/frame-navigator dev",
"build": "yarn workspaces run build",
"clean": "yarn workspaces run clean",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"typecheck": "yarn workspaces run typecheck"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"@smithery/sdk": "^1.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^4.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
}
}