forked from andreypopp/lang-julia
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "@plutojl/lang-julia",
"version": "0.12.1",
"description": "Julia language support for the CodeMirror code editor",
"scripts": {
"prepare": "cm-buildhelper src/index.ts"
},
"keywords": [
"editor",
"code"
],
"author": {
"name": "Andrey Popp",
"email": "me@andreypopp.com",
"url": "https://andreypopp.com"
},
"contributors": [
"Sergio A. Vargas <savargasqu+git@unal.edu.co>"
],
"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",
"dependencies": {
"@codemirror/autocomplete": "^6.10.2",
"@codemirror/language": "^6.9.1",
"@lezer/common": "^1.1.0",
"@plutojl/lezer-julia": "^0.12.1"
},
"devDependencies": {
"@codemirror/buildhelper": "^1.0.0",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/JuliaPluto/lang-julia.git"
}
}