-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "@valtown/codemirror-codeium",
"version": "1.1.1",
"description": "codemirror integration for codeium",
"scripts": {
"dev": "vite",
"generate": "buf generate",
"tsc": "tsc --noEmit",
"test": "biome lint",
"test:watch": "vitest",
"pages": "vite build",
"build": "tsc --build",
"prepare": "npm run build"
},
"main": "./dist/plugin.js",
"types": "./dist/plugin.d.ts",
"keywords": [
"codemirror",
"typescript",
"ts"
],
"author": "Val Town",
"license": "ISC",
"peerDependencies": {
"@codemirror/autocomplete": "^6",
"@codemirror/state": "^6",
"@codemirror/view": "^6"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@bufbuild/buf": "^1.36.0",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-python": "^6.1.5",
"codemirror": "^6",
"typescript": "^5.4.3",
"vite": "^5.2.7"
},
"files": [
"dist"
],
"type": "module",
"engines": {
"node": "*"
},
"dependencies": {
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-web": "^1.4.0"
}
}