-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.66 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
{
"name": "codemirror-lang-ruby",
"version": "0.4.4",
"description": "Ruby language support for CodeMirror 6, built on a Lezer grammar",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"sideEffects": false,
"keywords": [
"codemirror",
"ruby",
"lezer",
"syntax",
"highlighting",
"editor"
],
"files": [
"dist",
"src/syntax.grammar",
"README.md",
"LICENSE"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jeanpaulsio/codemirror-lang-ruby.git"
},
"scripts": {
"build": "rollup -c",
"prepare": "rollup -c",
"test": "mocha test/test.js",
"test:watch": "mocha test/test.js --watch",
"lint": "tsc --noEmit",
"demo:build": "rollup -c demo/rollup.config.js"
},
"peerDependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@lezer/common": "^1.0.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.0.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.40.0",
"@lezer/common": "^1.0.0",
"@lezer/generator": "^1.0.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"codemirror": "^6.0.2",
"mocha": "^10.0.0",
"rollup": "^4.0.0",
"tslib": "^2.6.0",
"typescript": "^5.0.0"
}
}