1 | {
|
2 | "name": "codemirror",
|
3 | "version": "6.0.1",
|
4 | "description": "Basic configuration for the CodeMirror code editor",
|
5 | "scripts": {
|
6 | "test": "cm-runtests",
|
7 | "prepare": "cm-buildhelper src/codemirror.ts"
|
8 | },
|
9 | "keywords": [
|
10 | "editor",
|
11 | "code"
|
12 | ],
|
13 | "author": {
|
14 | "name": "Marijn Haverbeke",
|
15 | "email": "marijnh@gmail.com",
|
16 | "url": "http://marijnhaverbeke.nl"
|
17 | },
|
18 | "type": "module",
|
19 | "main": "dist/index.cjs",
|
20 | "exports": {
|
21 | "import": "./dist/index.js",
|
22 | "require": "./dist/index.cjs"
|
23 | },
|
24 | "types": "dist/index.d.ts",
|
25 | "module": "dist/index.js",
|
26 | "sideEffects": false,
|
27 | "license": "MIT",
|
28 | "dependencies": {
|
29 | "@codemirror/autocomplete": "^6.0.0",
|
30 | "@codemirror/commands": "^6.0.0",
|
31 | "@codemirror/language": "^6.0.0",
|
32 | "@codemirror/lint": "^6.0.0",
|
33 | "@codemirror/search": "^6.0.0",
|
34 | "@codemirror/state": "^6.0.0",
|
35 | "@codemirror/view": "^6.0.0"
|
36 | },
|
37 | "devDependencies": {
|
38 | "@codemirror/buildhelper": "^0.1.5"
|
39 | },
|
40 | "repository": {
|
41 | "type": "git",
|
42 | "url": "https://github.com/codemirror/basic-setup.git"
|
43 | }
|
44 | }
|