-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
42 lines (42 loc) · 971 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
41
42
{
"name": "@flok-editor/cm-eval",
"version": "1.3.0",
"description": "CodeMirror 6 extension for code evaluation",
"author": "Damián Silvani <[email protected]>",
"license": "GPL-3.0+",
"type": "module",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsc"
},
"dependencies": {
"debug": "^4.3.4"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/lodash": "^4.14.191",
"@types/node": "^18.14.6",
"@types/uuid": "^9.0.1",
"prettier": "^3.4.2",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@codemirror/commands": "^6.2.2",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.9.2",
"@flok-editor/session": "*",
"codemirror": "^6.0.1"
}
}