forked from mongodb/leafygreen-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.92 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
{
"name": "@leafygreen-ui/code-editor",
"version": "1.0.6",
"description": "LeafyGreen UI Kit Code Editor",
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"license": "Apache-2.0",
"exports": {
".": {
"require": "./dist/umd/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"./testing": {
"require": "./dist/umd/testing/index.js",
"import": "./dist/esm/testing/index.js",
"types": "./dist/types/testing/index.d.ts"
}
},
"scripts": {
"build": "lg-build bundle",
"tsc": "lg-build tsc",
"docs": "lg-build docs"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.1",
"@codemirror/language": "^6.11.0",
"@codemirror/legacy-modes": "^6.5.1",
"@codemirror/lint": "^6.8.5",
"@codemirror/search": "^6.5.11",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.1",
"@leafygreen-ui/a11y": "workspace:^",
"@leafygreen-ui/badge": "workspace:^",
"@leafygreen-ui/button": "workspace:^",
"@leafygreen-ui/checkbox": "workspace:^",
"@leafygreen-ui/emotion": "workspace:^",
"@leafygreen-ui/hooks": "workspace:^",
"@leafygreen-ui/icon": "workspace:^",
"@leafygreen-ui/icon-button": "workspace:^",
"@leafygreen-ui/input-option": "workspace:^",
"@leafygreen-ui/lib": "workspace:^",
"@leafygreen-ui/menu": "workspace:^",
"@leafygreen-ui/modal": "workspace:^",
"@leafygreen-ui/palette": "workspace:^",
"@leafygreen-ui/text-input": "workspace:^",
"@leafygreen-ui/tokens": "workspace:^",
"@leafygreen-ui/tooltip": "workspace:^",
"@leafygreen-ui/typography": "workspace:^",
"@lezer/highlight": "^1.2.1",
"@lg-tools/test-harnesses": "^0.3.4",
"@replit/codemirror-lang-csharp": "^6.2.0",
"@uiw/codemirror-extensions-hyper-link": "^4.23.12",
"@wasm-fmt/clang-format": "^20.1.7",
"@wasm-fmt/gofmt": "^0.4.9",
"@wasm-fmt/ruff_fmt": "^0.10.0",
"codemirror": "^6.0.2",
"prettier": "2.8.8"
},
"devDependencies": {
"@lg-tools/build": "workspace:^"
},
"peerDependencies": {
"@leafygreen-ui/leafygreen-provider": "workspace:^5.0.0 || ^4.0.0 || ^3.2.0"
},
"homepage": "https://github.com/mongodb/leafygreen-ui/tree/main/packages/code-editor",
"repository": {
"type": "git",
"url": "https://github.com/mongodb/leafygreen-ui"
},
"bugs": {
"url": "https://jira.mongodb.org/projects/LG/summary"
}
}