-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 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
{
"name": "@replit/codemirror-vim",
"version": "6.3.0",
"description": "Vim keybindings for CodeMirror 6",
"author": {
"name": "Yunchi Luo",
"email": "mightyguava@gmail.com"
},
"scripts": {
"dev": "vite ./dev",
"test": "cm-runtests",
"build-types": "rm -rf out && tsc && dts-bundle-generator out/index.ts -o dist/index.d.ts && cp dist/index.d.ts dist/index.d.cts",
"testAll": "yarn run build-test-package && yarn run test && cd dev/cm5 && yarn run buildAndTest",
"build": "cm-buildhelper src/index.ts && node scripts/addVersion.cjs && npm run build-types",
"publish": "yarn run build && npm publish",
"build-test-package": "bash ./scripts/build-test-package.sh",
"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.x.x",
"@codemirror/language": "6.x.x",
"@codemirror/search": "6.x.x",
"@codemirror/state": "6.x.x",
"@codemirror/view": "6.x.x"
},
"devDependencies": {
"@codemirror/buildhelper": "^1.0.2",
"@codemirror/lang-javascript": "6.x.x",
"@codemirror/lang-xml": "6.x.x",
"@codemirror/language": "6.x.x",
"codemirror": "6.x.x",
"dts-bundle-generator": "^9.5.1",
"typescript": "^5.8.2",
"vite": "^6.2.2"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/replit/codemirror-vim.git"
}
}