-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.06 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
67
68
69
70
71
72
73
74
75
{
"name": "@1c-syntax/codemirror-lang-bsl",
"version": "0.3.1",
"description": "1C:Enterprise / OneScript (BSL) language support for CodeMirror 6",
"keywords": [
"codemirror",
"codemirror6",
"lezer",
"bsl",
"1c",
"1c-enterprise",
"onescript",
"syntax-highlighting"
],
"homepage": "https://github.com/1c-syntax/codemirror-lang-bsl",
"bugs": "https://github.com/1c-syntax/codemirror-lang-bsl/issues",
"repository": {
"type": "git",
"url": "https://github.com/1c-syntax/codemirror-lang-bsl.git"
},
"license": "MIT",
"author": "1C-Syntax contributors",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"test": "mocha 'test/test.js' 'test/*.test.js'",
"prepare": "rollup -c",
"prepublishOnly": "npm test",
"build": "rollup -c",
"build:demo": "rollup -c rollup.config.demo.js",
"build:docs": "typedoc",
"build:site": "npm run build:demo && npm run build:docs"
},
"dependencies": {
"@codemirror/language": "^6.10.0",
"@lezer/common": "^1.2.0",
"@lezer/highlight": "^1.2.0",
"@lezer/lr": "^1.4.0"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.20.2",
"@codemirror/commands": "^6.10.3",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.0",
"@eslint/js": "^9.39.4",
"@lezer/generator": "^1.7.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/node": "^25.9.1",
"codemirror": "^6.0.2",
"eslint": "^9.39.4",
"globals": "^17.6.0",
"mocha": "^11.0.0",
"rollup": "^4.0.0",
"tslib": "^2.8.0",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0"
}
}