Skip to content

Commit 7c96b0d

Browse files
committed
Add manifest to say no internet connection is used.
1 parent d699d65 commit 7c96b0d

File tree

9 files changed

+806
-1082
lines changed

9 files changed

+806
-1082
lines changed

apps/debug/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
},
1212
"dependencies": {
1313
"backend": "workspace:*",
14-
"next": "latest",
14+
"next": "^13.4.15",
1515
"plugin-ui": "workspace:*",
1616
"react": "^18.2.0",
1717
"react-dom": "^18.2.0"
1818
},
1919
"devDependencies": {
20-
"@types/node": "^18.16.19",
21-
"@types/react": "^18.2.14",
22-
"@types/react-dom": "^18.2.6",
23-
"autoprefixer": "^10.4.14",
20+
"@types/node": "^20.5.0",
21+
"@types/react": "^18.2.20",
22+
"@types/react-dom": "^18.2.7",
23+
"autoprefixer": "^10.4.15",
2424
"eslint-config-custom": "workspace:*",
25-
"postcss": "^8.4.25",
26-
"tailwindcss": "3.2.7",
25+
"postcss": "^8.4.27",
26+
"tailwindcss": "3.3.3",
2727
"tsconfig": "workspace:*",
2828
"typescript": "^5.1.6"
2929
}

apps/plugin/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,24 @@
1717
"react-dom": "^18.2.0"
1818
},
1919
"devDependencies": {
20-
"@types/node": "^17.0.45",
21-
"@types/react": "^18.2.14",
22-
"@types/react-dom": "^18.2.6",
23-
"@typescript-eslint/eslint-plugin": "^5.61.0",
24-
"@typescript-eslint/parser": "^5.61.0",
25-
"@vitejs/plugin-react": "^4.0.2",
20+
"@types/node": "^20.5.0",
21+
"@types/react": "^18.2.20",
22+
"@types/react-dom": "^18.2.7",
23+
"@typescript-eslint/eslint-plugin": "^6.4.0",
24+
"@typescript-eslint/parser": "^6.4.0",
25+
"@vitejs/plugin-react": "^4.0.4",
2626
"@vitejs/plugin-react-swc": "^3.3.2",
27-
"autoprefixer": "^10.4.14",
27+
"autoprefixer": "^10.4.15",
2828
"concurrently": "^8.2.0",
29-
"esbuild": "^0.17.19",
29+
"esbuild": "^0.19.2",
3030
"eslint-config-custom": "workspace:*",
3131
"eslint-plugin-react-hooks": "^4.6.0",
3232
"eslint-plugin-react-refresh": "^0.4.3",
33-
"postcss": "^8.4.25",
34-
"tailwindcss": "3.3.2",
33+
"postcss": "^8.4.27",
34+
"tailwindcss": "3.3.3",
3535
"tsconfig": "workspace:*",
3636
"typescript": "^5.1.6",
37-
"vite": "^4.4.2",
37+
"vite": "^4.4.9",
3838
"vite-plugin-singlefile": "^0.13.5"
3939
}
4040
}

manifest.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
"editorType": ["figma", "dev"],
88
"capabilities": ["inspect", "codegen"],
99
"permissions": [],
10-
10+
"networkAccess": {
11+
"allowedDomains": ["none"]
12+
},
1113
"codegenLanguages": [
1214
{ "label": "HTML", "value": "html" },
1315
{ "label": "React (JSX)", "value": "html_jsx" },

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"format": "prettier --write \"**/*.{ts,tsx,md}\""
99
},
1010
"devDependencies": {
11-
"eslint": "^8.44.0",
11+
"eslint": "^8.47.0",
1212
"eslint-config-custom": "workspace:*",
13-
"prettier": "^2.8.8",
14-
"turbo": "^1.10.7"
13+
"prettier": "^3.0.1",
14+
"turbo": "^1.10.12"
1515
},
1616
"packageManager": "[email protected]"
1717
}

packages/backend/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"react-dom": "18.2.0"
2020
},
2121
"devDependencies": {
22-
"@types/react": "^18.2.14",
23-
"@types/react-dom": "^18.2.6",
24-
"eslint": "^8.44.0",
22+
"@types/react": "^18.2.20",
23+
"@types/react-dom": "^18.2.7",
24+
"eslint": "^8.47.0",
2525
"eslint-config-custom": "workspace:*",
2626
"tsconfig": "workspace:*",
27-
"tsup": "^6.7.0",
27+
"tsup": "^7.2.0",
2828
"typescript": "^5.1.6"
2929
}
3030
}

packages/eslint-config-custom/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {
7-
"eslint-config-next": "latest",
8-
"eslint-config-prettier": "^8.8.0",
9-
"eslint-plugin-react": "7.28.0",
10-
"eslint-config-turbo": "latest"
7+
"eslint-config-next": "^13.4.15",
8+
"eslint-config-prettier": "^9.0.0",
9+
"eslint-config-turbo": "^1.10.12",
10+
"eslint-plugin-react": "7.33.1"
1111
},
1212
"publishConfig": {
1313
"access": "public"

packages/plugin-ui/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
"copy-to-clipboard": "^3.3.3",
1515
"react": "^18.2.0",
1616
"react-syntax-highlighter": "^15.5.0",
17-
"tailwindcss": "3.3.2"
17+
"tailwindcss": "3.3.3"
1818
},
1919
"devDependencies": {
20-
"@types/react": "^18.2.14",
21-
"@types/react-dom": "^18.2.6",
22-
"@types/react-syntax-highlighter": "15.5.6",
23-
"eslint": "^8.44.0",
20+
"@types/react": "^18.2.20",
21+
"@types/react-dom": "^18.2.7",
22+
"@types/react-syntax-highlighter": "15.5.7",
23+
"eslint": "^8.47.0",
2424
"eslint-config-custom": "workspace:*",
2525
"tsconfig": "workspace:*",
2626
"typescript": "^5.1.6"

packages/ui/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"lint": "eslint \"**/*.ts*\""
99
},
1010
"devDependencies": {
11-
"@types/react": "^18.2.14",
12-
"@types/react-dom": "^18.2.6",
13-
"eslint": "^8.44.0",
11+
"@types/react": "^18.2.20",
12+
"@types/react-dom": "^18.2.7",
13+
"eslint": "^8.47.0",
1414
"eslint-config-custom": "workspace:*",
1515
"react": "^18.2.0",
1616
"tsconfig": "workspace:*",

0 commit comments

Comments
 (0)