-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1005 Bytes
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1005 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "omi-cli",
"version": "4.2.2",
"description": "Create website, app base on omi with no build configuration.",
"main": "bin/omi",
"engines": {
"node": ">=6.0.0"
},
"preferGlobal": true,
"bin": {
"omi": "./bin/omi",
"omi-cli": "./bin/omi"
},
"repository": "omijs/cli",
"files": [
"bin",
"lib",
"template"
],
"keywords": [
"omi",
"cli",
"omi-cli"
],
"author": "dntzhang",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.3.0",
"cross-npm-spawn": "^1.1.1",
"cross-spawn": "^7.0.3",
"empty-dir": "^2.0.0",
"fs-exists-sync": "^0.1.0",
"validate-npm-package-name": "^3.0.0",
"vinyl-fs": "^3.0.3",
"which": "^2.0.2"
},
"bugs": {
"url": "https://github.com/Tencent/omi/issues"
},
"homepage": "http://omijs.org",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"prettier": "^3.6.2"
}
}