forked from replit/codemirror-vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
47
48
{
"name": "@replit/codemirror-vim",
"version": "6.2.1",
"description": "Vim keybindings for CodeMirror 6",
"scripts": {
"dev": "vite ./dev",
"test": "cm-runtests",
"static": "tsc --noEmit",
"testAll": "yarn run static && yarn run test && cd dev/cm5 && yarn run buildAndTest",
"build": "cm-buildhelper src/index.ts",
"publish": "yarn run build && npm publish",
"prepare": "yarn run build"
},
"keywords": [
"editor",
"code"
],
"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",
"peerDependencies": {
"@codemirror/commands": "^6.0.0",
"@codemirror/language": "^6.1.0",
"@codemirror/search": "^6.2.0",
"@codemirror/state": "^6.0.1",
"@codemirror/view": "^6.0.3"
},
"devDependencies": {
"@codemirror/buildhelper": "^1.0.1",
"@codemirror/lang-javascript": "^6.0.0",
"@codemirror/lang-xml": "^6.0.0",
"@codemirror/language": "^6.1.0",
"codemirror": "6.0.1",
"typescript": "^5.0.2",
"vite": "^2.9.6"
},
"repository": {
"type": "git",
"url": "https://github.com/replit/codemirror-vim.git"
}
}