-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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
{
"name": "solid-playground-editor-cm",
"version": "0.2.0",
"description": "codemirror6-based editor with typescript support for the solid.js playground",
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs-community/solid-playground-editor-cm.git"
},
"license": "MIT",
"author": { "name": "Alex Lohr", "email": "alex.lohr@goto.com" },
"scripts": {
"dev": "vite",
"build": "vite build; tsc",
"build:demo": "vite build --config vite.config.demo.ts",
"start": "vite start --config vite.config.demo.ts",
"prettier": "prettier -w src/**/*"
},
"type": "module",
"files": ["dist"],
"main": "dist/editor.cjs",
"module": "dist/editor.js",
"solid": "./dist/editor.jsx",
"types": "dist/editor.d.ts",
"styles": "dist/editor.css",
"exports": {
"solid": "./dist/editor.jsx",
"import": {
"default": "./dist/editor.js",
"types": "./dist/editor.d.ts"
},
"require": "./dist/editor.cjs"
},
"sideEffects": false,
"dependencies": {
"@codemirror/autocomplete": "^6.4.2",
"@codemirror/commands": "^6.2.1",
"@codemirror/lang-css": "^6.0.2",
"@codemirror/lang-html": "^6.4.2",
"@codemirror/lang-json": "6.0.1",
"@codemirror/lang-javascript": "^6.1.4",
"@codemirror/language": "^6.6.0",
"@codemirror/lint": "^6.1.1",
"@codemirror/search": "^6.2.3",
"@codemirror/state": "^6.2.0",
"@codemirror/theme-one-dark": "^6.1.1",
"@codemirror/view": "^6.9.1",
"@types/node": "^18.14.0",
"@typescript/vfs": "^1.4.0",
"solid-js": "^1.6.11",
"typescript": "^4.9.5",
"typescript-language-server": "3.2.0"
},
"devDependencies": {
"@types/lz-string": "^1.3.34",
"csstype": "3.1.1",
"esbuild": "^0.17.9",
"prettier": "^2.8.4",
"rollup": "^3.17.1",
"tsup": "^6.6.3",
"vite": "^4.1.2",
"vite-plugin-solid": "2.5.0"
},
"engines": {
"node": ">=16"
},
"peerDependencies": {
"solid-js": "^1.5.0"
}
}