-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "codemirror-expand-selection",
"version": "0.3.0",
"type": "module",
"license": "MIT",
"description": "CodeMirror commands to expand/shrink text selections, inspired by Emacs’ expand-region and expreg.",
"keywords": [
"codemirror",
"editor",
"expand-region",
"text-editing"
],
"repository": {
"type": "git",
"url": "https://github.com/i-aki-y/codemirror-expand-selection"
},
"scripts": {
"dev": "vite demo/",
"build": "tsc -p tsconfig.build.json",
"format": "dprint fmt",
"test": "npx tsx test/*.test.ts"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"devDependencies": {
"@codemirror/commands": "^6.10.0",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-python": "^6.2.1",
"codemirror": "^6.0.2",
"dprint": "^0.50.2",
"typescript": "~5.9.3",
"uvu": "^0.5.6",
"vite": "^7.2.4"
},
"peerDependencies": {
"@codemirror/language": "^6.11.3",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.8",
"@lezer/common": "^1.3.0"
}
}