forked from codemirror/basic-setup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.18 KB
/
package.json
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
{
"name": "@plutojl/codemirror-pluto-setup",
"version": "1234.3.0",
"description": "Example configuration for the CodeMirror code editor - as used by Pluto.jl",
"scripts": {
"bundle": "rollup -c"
},
"oldscriptsthatwedontuseanymore": {
"test": "cm-runtests",
"prepare": "cm-buildhelper src/basic-setup.ts",
"esbuild": "cm-buildhelper src/basic-setup.ts && esbuild dist/index.js --bundle --format=esm --outfile=dist/index.bundle.js",
"roll": "cm-buildhelper src/basic-setup.ts && rollup --config --configDebug"
},
"keywords": [
"editor",
"code"
],
"author": {
"name": "Marijn Haverbeke",
"email": "[email protected]",
"url": "http://marijnhaverbeke.nl"
},
"type": "module",
"main": "dist/index.es.js",
"exports": {
"import": "./dist/index.es.js"
},
"types": "dist/index.d.ts",
"module": "dist/index.js",
"sideEffects": false,
"license": "MIT",
"prettier": {
"semi": false,
"tabWidth": 4
},
"dependencies": {
"@codemirror/autocomplete": "^6.15.0",
"@codemirror/collab": "^6.1.1",
"@codemirror/commands": "^6.3.3",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.8",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-markdown": "^6.2.4",
"@codemirror/lang-python": "^6.1.5",
"@codemirror/lang-sql": "^6.6.2",
"@codemirror/language": "^6.10.1",
"@codemirror/lint": "^6.5.0",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.1",
"@lezer/common": "^1.2.1",
"@lezer/highlight": "^1.2.0",
"@lezer/markdown": "^1.2.0",
"@plutojl/lang-julia": "^0.11.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^9.0.2",
"rollup": "^3.21.0",
"rollup-plugin-dts": "^5.3.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/JuliaPluto/codemirror-pluto-setup.git"
}
}