-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "@replit/codemirror-minimap",
"version": "0.5.2",
"author": {
"name": "Brady Madden",
"email": "brady@repl.it"
},
"type": "module",
"main": "./dist/index.cjs",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"module": "dist/index.js",
"sideEffects": false,
"license": "MIT",
"scripts": {
"dev": "vite ./dev",
"build": "cm-buildhelper ./src/index.ts",
"test": "cm-runtests"
},
"dependencies": {
"crelt": "^1.0.5"
},
"peerDependencies": {
"@codemirror/language": "^6.9.1",
"@codemirror/lint": "^6.4.2",
"@codemirror/state": "^6.3.1",
"@codemirror/view": "^6.21.3",
"@lezer/common": "^1.1.0",
"@lezer/highlight": "^1.1.6"
},
"devDependencies": {
"@codemirror/language": "^6.9.1",
"@codemirror/lint": "^6.4.2",
"@codemirror/state": "^6.3.1",
"@codemirror/view": "^6.21.3",
"@lezer/common": "^1.1.0",
"@lezer/highlight": "^1.1.6",
"@codemirror/buildhelper": "^0.1.16",
"@codemirror/lang-javascript": "^6.1.4",
"@codemirror/merge": "^6.1.1",
"@codemirror/theme-one-dark": "^6.1.1",
"codemirror": "^6.0.1",
"typescript": "^5.0.2",
"vite": "^4.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/replit/codemirror-minimap.git"
}
}