-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@valtown/codemirror-continue",
"version": "2.3.1",
"description": "CodeMirror plugin to support comment continuations",
"scripts": {
"prepare": "tsc",
"dev": "vite",
"tsc": "tsc --noEmit",
"test": "vitest run",
"lint": "biome lint",
"test:watch": "vitest",
"build": "vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/val-town/codemirror-continue.git"
},
"files": [
"dist",
"src"
],
"keywords": [
"codemirror",
"codemirror6"
],
"author": "Val Town",
"license": "ISC",
"bugs": {
"url": "https://github.com/val-town/codemirror-continue/issues"
},
"homepage": "https://github.com/val-town/codemirror-continue#readme",
"devDependencies": {
"@biomejs/biome": "^1.8.2",
"@codemirror/lang-javascript": "^6.2.2",
"codemirror": "^6.0.1",
"typescript": "^5.7.2",
"vite": "^5.3.1",
"vitest": "^1.6.0"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"default": "./dist/index.js"
}
}
},
"types": "./dist/index.d.ts",
"type": "module",
"peerDependencies": {
"@codemirror/language": "^6",
"@codemirror/state": "^6",
"@codemirror/view": "^6",
"@lezer/common": "^1"
},
"engines": {
"node": "*"
}
}