-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.06 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.06 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
{
"name": "mikoeditor",
"version": "1.0.0",
"description": "A modern text editor library built with TypeScript",
"main": "dist/webrender/index.js",
"module": "dist/webrender/index.js",
"types": "dist/webrender/ndex.d.ts",
"type": "module",
"private": false,
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"build:demo": "vite build",
"test": "echo \"Tests not configured yet\"",
"example": "echo \"See src/test/example.ts for usage examples\"",
"check": "tsc --noEmit"
},
"keywords": [
"text-editor",
"typescript",
"syntax-highlighting",
"code-editor",
"canvas",
"editor"
],
"author": "MikoEditor Team",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0",
"vite": "^7.1.7"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.13",
"tailwindcss": "^4.1.13",
"vite-plugin-singlefile": "^2.3.0"
}
}