-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
71 lines (71 loc) · 1.47 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
62
63
64
65
66
67
68
69
70
71
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@valtown/codemirror-ts",
"version": "3.0.0-9",
"description": "codemirror extensions for typescript",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/val-town/val.town"
},
"homepage": "https://github.com/val-town/val.town",
"scripts": {
"prepare": "tsc",
"dev": "vite",
"typecheck": "tsc --noEmit",
"lint": "biome check",
"test": "vitest run",
"test:watch": "vitest",
"build": "vite build"
},
"keywords": [
"codemirror",
"typescript",
"ts"
],
"author": "Val Town",
"license": "ISC",
"peerDependencies": {
"@codemirror/autocomplete": "^6",
"@codemirror/lint": "^6",
"@codemirror/state": "^6",
"@codemirror/view": "^6"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@codemirror/lang-javascript": "^6.2.2",
"@types/node": "^22.10.5",
"@typescript/vfs": "^1.6.0",
"@vitest/coverage-v8": "^2.1.8",
"codemirror": "^6.0.1",
"comlink": "^4.4.2",
"happy-dom": "^15.11.7",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./worker": {
"import": {
"types": "./dist/worker.d.ts",
"default": "./dist/worker.js"
}
}
},
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": "*"
},
"module": "./dist/index.js"
}