This repository has been archived by the owner on Jun 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.12 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
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
{
"$schema": "https://json.schemastore.org/package",
"name": "@xeho91/logo",
"version": "2.0.0",
"description": "xeho91's logo assets with custom CLI for automated tasks.",
"keywords": [
"logo",
"brand assets",
"automation",
"SVG",
"SMIL",
"animated",
"PNG",
"Svelte",
"CLI"
],
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Mateusz Kadlubowski",
"email": "xeho91@pm.me",
"url": "https://xeho91.com/"
},
"homepage": "https://github.com/xeho91/logo",
"repository": {
"type": "git",
"url": "git+https://github.com/xeho91/logo.git"
},
"bugs": {
"url": "https://github.com/xeho91/logo/issues"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"/dist",
"/source/logo",
"/bin"
],
"bin": {
"xeho91-logo": "./bin/run"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "",
"start": ""
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/errors": "^1.3.4",
"@oclif/parser": "^3.8.5",
"@oclif/plugin-help": "^3.2.2",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@xeho91/colors": "latest",
"chalk": "^4.1.1",
"enquirer": "^2.3.6",
"listr2": "^3.10.0",
"svelte": "^3.38.2",
"svgexport": "^0.4.2",
"svgo": "2.3.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@tsconfig/node16": "^1.0.1",
"@types/fs-extra": "^9.0.11",
"@types/listr": "^0.14.3",
"@types/node": "^15.12.2",
"@types/svgo": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-svelte3": "^3.2.0",
"fs-extra": "^10.0.0",
"ts-node": "^10.0.0",
"tslib": "^2.2.0",
"typescript": "^4.3.2"
},
"oclif": {
"commands": "./lib/cli/commands",
"bin": "xeho91-logo",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
]
}
}