-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 KB
/
package.json
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
{
"name": "@orion.ui/orion-cli",
"description": "CLI for Orion UI",
"bin": {
"orion": "outfile.cjs"
},
"files": [
"template",
"outfile.cjs",
"__template-classic__",
"__template-setup-service__"
],
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"scripts": {
"watch": "node ./scripts/build.mjs --watch",
"build": "node ./scripts/build.mjs",
"prerelease": "node ./scripts/build.mjs && npm publish --tag alpha --access public",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orion-ui/orion-cli.git"
},
"author": "Orion UI <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/orion-ui/orion-cli/issues"
},
"homepage": "https://github.com/orion-ui/orion-cli#readme",
"devDependencies": {
"@orion.ui/eslint-plugin-orion": "^1.1.0",
"@types/fs-extra": "^11.0.1",
"@types/gradient-string": "^1.1.2",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"esbuild": "^0.17.15",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"fs-extra": "^11.1.1",
"magicast": "^0.2.3",
"prettier": "^2.8.7",
"typescript": "^5.0.4"
},
"dependencies": {
"@clack/prompts": "^0.6.3",
"gradient-string": "^2.0.2",
"picocolors": "^1.0.0",
"radash": "^10.8.1"
}
}