-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.82 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.82 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "dword",
"version": "16.0.1",
"description": "Web editor based on CodeMirror",
"main": "./server/index.js",
"exports": "./server/index.js",
"type": "module",
"bin": {
"dword": "bin/dword.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"start": "madrun start",
"start:dev": "madrun start:dev",
"lint": "madrun lint",
"lint:bin": "madrun lint:bin",
"lint:client": "madrun lint:client",
"lint:server": "madrun lint:server",
"putout": "madrun putout",
"fix:lint": "madrun fix:lint",
"build-progress": "madrun build-progress",
"build:client": "madrun build:client",
"build:client:dev": "madrun build:client:dev",
"build:start": "madrun build:start",
"build:start:dev": "madrun build:start:dev",
"cp:codemirror:modules": "madrun cp:codemirror:modules",
"build-progress:codemirror": "madrun build-progress:codemirror",
"build:codemirror:dev": "madrun build:codemirror:dev",
"build:codemirror": "madrun build:codemirror",
"watch:server": "madrun watch:server",
"watch:client": "madrun watch:client",
"watch": "madrun watch",
"build": "madrun build",
"wisdom": "madrun wisdom",
"rm:dist": "madrun rm:dist",
"rm:dist-dev": "madrun rm:dist-dev"
},
"dependencies": {
"currify": "^4.0.0",
"express": "^5.2.1",
"join-io": "^5.0.0",
"readjson": "^2.0.1",
"restafary": "^13.0.1",
"restbox": "^4.0.1",
"socket-file": "^8.0.0",
"socket.io": "^4.0.0",
"try-to-catch": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@cloudcmd/clipboard": "^2.0.0",
"@cloudcmd/create-element": "^2.0.2",
"@putout/eslint-flat": "^4.0.0",
"babel-loader": "^10.0.0",
"callbackify": "^1.1.0",
"clean-css-loader": "^4.1.1",
"codemirror": "^5.0.0",
"css-loader": "^7.1.3",
"cssnano": "^7.1.2",
"daffy": "^1.0.3",
"emitify": "^4.0.1",
"es6-promisify": "^7.0.0",
"eslint": "^9.39.2",
"eslint-plugin-putout": "^30.0.2",
"execon": "^1.2.9",
"jssha": "^3.1.0",
"load.js": "^3.0.2",
"madrun": "^12.1.3",
"nodemon": "^3.0.1",
"once": "^1.4.0",
"putout": "^41.18.0",
"rimraf": "^6.1.2",
"smalltalk": "^5.0.0",
"style-loader": "^4.0.0",
"url-loader": "^4.0.0",
"webpack": "^5.1.3",
"webpack-cli": "^6.0.1",
"wraptile": "^3.0.0",
"zipio": "^1.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudcmd/dword"
},
"keywords": [
"editor",
"express",
"middleware",
"monaco",
"patch",
"diff",
"ide",
"text"
],
"author": "coderaiser",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudcmd/dword/issues"
},
"homepage": "https://github.com/cloudcmd/dword",
"publishConfig": {
"access": "public"
}
}