-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 937 Bytes
/
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
{
"name": "@overleaf/codemirror-tree-view",
"version": "0.1.3",
"description": "CodeMirror extension providing an interactive view of a document's syntax tree",
"type": "module",
"repository": "github:overleaf/codemirror-tree-view",
"main": "dist/index.cjs",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"module": "dist/index.js",
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"codemirror"
],
"author": "Alf Eaton",
"license": "MIT",
"scripts": {
"prepare": "cm-buildhelper src/index.ts"
},
"peerDependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@codemirror/language": "^6.0.0"
},
"devDependencies": {
"@codemirror/buildhelper": "^1.0.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 120
}
}