-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 935 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 935 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
{
"name": "coem-editor",
"version": "1.0.0",
"description": "",
"directories": {
"example": "examples"
},
"source": "src/index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "rm -rf dist/ && mkdir dist/ && cp -r src/examples dist/ && parcel --dist-dir dist/",
"build": "rm -rf dist/ && mkdir dist/ && parcel build --dist-dir dist/ --public-url ./ && cp src/CNAME dist/CNAME && cp -r src/examples dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coem-lang/coem-editor.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/coem-lang/coem-editor/issues"
},
"homepage": "https://github.com/coem-lang/coem-editor#readme",
"dependencies": {
"@codemirror/basic-setup": "^0.19.1"
},
"devDependencies": {
"parcel": "^2.6.2",
"process": "^0.11.10",
"typescript": "^4.5.4"
}
}