-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 892 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 892 Bytes
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
{
"name": "lite-editor",
"version": "1.0.0",
"description": "경량 웹 에디터 라이브러리",
"main": "js/core.js",
"scripts": {
"start": "NODE_ENV=development http-server",
"dev": "NODE_ENV=development http-server -p 8080",
"build": "echo 'Static files - no build process needed'",
"serve:prod": "NODE_ENV=production http-server -p 3000",
"serve:dev": "NODE_ENV=development http-server -p 8080 --cors"
},
"keywords": [
"editor",
"wysiwyg",
"rich-text",
"javascript"
],
"author": {
"name": "subnote lite-editor team in korea",
"email": "teamsubnote@gmail.com",
"url": "https://subnote.cc"
},
"license": "Apache License 2.0 with Commons Clause",
"config": {
"environment": "development",
"version": "1.0.05",
"cacheBusting": {
"development": "timestamp",
"production": "version"
}
}
}