monacopilot 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "monacopilot",
3
+ "version": "0.8.2",
4
+ "description": "Extended Monaco Editor with AI auto-completion, suggestions, and new themes for React.",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "devDependencies": {
12
+ "@changesets/cli": "^2.27.1",
13
+ "@ianvs/prettier-plugin-sort-imports": "^4.2.1",
14
+ "@types/node": "^20",
15
+ "@types/react": "^18.2.69",
16
+ "@types/react-dom": "^18.2.22",
17
+ "@typescript-eslint/eslint-plugin": "^7.3.1",
18
+ "eslint": "^8.57.0",
19
+ "eslint-plugin-react": "^7.34.1",
20
+ "fast-plist": "^0.1.3",
21
+ "groq-sdk": "^0.3.2",
22
+ "monaco-editor": "^0.47.0",
23
+ "prettier": "^3.2.5",
24
+ "react": "^18.2.0",
25
+ "react-dom": "^18.2.0",
26
+ "tsup": "^8.0.2",
27
+ "typescript": "^5.4.3"
28
+ },
29
+ "keywords": [
30
+ "monaco",
31
+ "monaco-editor",
32
+ "react-monaco-editor",
33
+ "ai-monaco-editor",
34
+ "monacopilot",
35
+ "monaco-editor-react",
36
+ "ai-editor"
37
+ ],
38
+ "homepage": "https://github.com/arshad-yaseen/monacopilot#readme",
39
+ "license": "MIT",
40
+ "author": "Arshad Yaseen <m@arshadyaseen.com>",
41
+ "peerDependencies": {
42
+ "react": "^18.2.0",
43
+ "react-dom": "^18.2.0"
44
+ },
45
+ "dependencies": {
46
+ "@monaco-editor/react": "^4.6.0"
47
+ },
48
+ "scripts": {
49
+ "type-check": "tsc --noEmit",
50
+ "build": "tsup src/index.ts",
51
+ "dev:test": "pnpm -C test dev",
52
+ "lint": "eslint . --ext .ts,.tsx --fix",
53
+ "lint:test": "pnpm -C test lint",
54
+ "format": "prettier --write .",
55
+ "checks": "pnpm type-check && pnpm lint && pnpm lint:test",
56
+ "prepare-release": "pnpm build && pnpm checks && changeset && changeset version",
57
+ "release": "changeset publish",
58
+ "generate-themes": "node scripts/generate-themes.mjs"
59
+ }
60
+ }