@iconoma/cli 0.0.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +374 -0
- package/bin/run.cmd +3 -0
- package/bin/run.js +5 -0
- package/dist/commands/studio.d.ts +11 -0
- package/dist/commands/studio.d.ts.map +1 -0
- package/dist/commands/studio.js +34 -0
- package/dist/get-studio.d.ts +9 -0
- package/dist/get-studio.d.ts.map +1 -0
- package/dist/get-studio.js +4 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1 -0
- package/dist/studio/128.index.js +55 -0
- package/dist/studio/143.index.js +2457 -0
- package/dist/studio/148.index.js +744 -0
- package/dist/studio/211.index.js +47186 -0
- package/dist/studio/22.index.js +5942 -0
- package/dist/studio/437.index.js +20 -0
- package/dist/studio/509.index.js +2240 -0
- package/dist/studio/533.index.js +883 -0
- package/dist/studio/537.index.js +62 -0
- package/dist/studio/542.index.js +22 -0
- package/dist/studio/543.index.js +8172 -0
- package/dist/studio/593.index.js +38099 -0
- package/dist/studio/777.index.js +24 -0
- package/dist/studio/786.index.js +1065 -0
- package/dist/studio/860.index.js +13 -0
- package/dist/studio/876.index.js +3848 -0
- package/dist/studio/940.index.js +6772 -0
- package/dist/studio/951.index.js +98 -0
- package/dist/studio/c4c9b2153fb0d143f75f.js +1 -0
- package/dist/studio/client/assets/index-BD3Y-97G.css +2 -0
- package/dist/studio/client/assets/index-Dk8OjIgh.js +53 -0
- package/dist/studio/client/favicon.ico +0 -0
- package/dist/studio/client/index.html +21 -0
- package/dist/studio/index.js +22188 -0
- package/dist/studio/package.json +3 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/oclif.manifest.json +37 -0
- package/package.json +75 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"root":["../src/get-studio.ts","../src/index.ts","../src/commands/studio.ts"],"version":"5.9.3"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commands": {
|
|
3
|
+
"studio": {
|
|
4
|
+
"aliases": [],
|
|
5
|
+
"args": {},
|
|
6
|
+
"description": "Start the Iconoma Studio",
|
|
7
|
+
"examples": [
|
|
8
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9
|
+
],
|
|
10
|
+
"flags": {
|
|
11
|
+
"port": {
|
|
12
|
+
"char": "p",
|
|
13
|
+
"description": "port to listen on",
|
|
14
|
+
"name": "port",
|
|
15
|
+
"hasDynamicHelp": false,
|
|
16
|
+
"multiple": false,
|
|
17
|
+
"type": "option"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"hasDynamicHelp": false,
|
|
21
|
+
"hiddenAliases": [],
|
|
22
|
+
"id": "studio",
|
|
23
|
+
"pluginAlias": "@iconoma/cli",
|
|
24
|
+
"pluginName": "@iconoma/cli",
|
|
25
|
+
"pluginType": "core",
|
|
26
|
+
"strict": true,
|
|
27
|
+
"enableJsonFlag": false,
|
|
28
|
+
"isESM": true,
|
|
29
|
+
"relativePath": [
|
|
30
|
+
"dist",
|
|
31
|
+
"commands",
|
|
32
|
+
"studio.js"
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"version": "0.0.1-beta.1"
|
|
37
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@iconoma/cli",
|
|
3
|
+
"description": "A developer-friendly tool to manage and organize icons through CLI and web studio",
|
|
4
|
+
"version": "0.0.1-beta.1",
|
|
5
|
+
"author": "Theryston Santos @Theryston",
|
|
6
|
+
"bin": {
|
|
7
|
+
"iconoma": "./bin/run.js"
|
|
8
|
+
},
|
|
9
|
+
"private": false,
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"bugs": "https://github.com/theryston/iconoma/issues",
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@oclif/core": "^4",
|
|
16
|
+
"@oclif/plugin-help": "^6",
|
|
17
|
+
"@oclif/plugin-plugins": "^5",
|
|
18
|
+
"figlet": "^1.9.4",
|
|
19
|
+
"gradient-string": "^3.0.0",
|
|
20
|
+
"nanospinner": "^1.2.2",
|
|
21
|
+
"open": "^11.0.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@types/chai": "^4",
|
|
25
|
+
"@types/mocha": "^10",
|
|
26
|
+
"@types/node": "^18",
|
|
27
|
+
"chai": "^4",
|
|
28
|
+
"eslint": "^9",
|
|
29
|
+
"mocha": "^10",
|
|
30
|
+
"oclif": "^4",
|
|
31
|
+
"shx": "^0.3.3",
|
|
32
|
+
"ts-node": "^10",
|
|
33
|
+
"typescript": "^5",
|
|
34
|
+
"@iconoma/eslint-config": "0.0.0",
|
|
35
|
+
"@iconoma/typescript-config": "0.0.0"
|
|
36
|
+
},
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=18.0.0"
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"./bin",
|
|
42
|
+
"./dist",
|
|
43
|
+
"./oclif.manifest.json"
|
|
44
|
+
],
|
|
45
|
+
"homepage": "https://github.com/theryston/iconoma",
|
|
46
|
+
"keywords": [
|
|
47
|
+
"oclif"
|
|
48
|
+
],
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"main": "dist/index.js",
|
|
51
|
+
"type": "module",
|
|
52
|
+
"oclif": {
|
|
53
|
+
"bin": "iconoma",
|
|
54
|
+
"dirname": "iconoma",
|
|
55
|
+
"commands": "./dist/commands",
|
|
56
|
+
"plugins": [
|
|
57
|
+
"@oclif/plugin-help",
|
|
58
|
+
"@oclif/plugin-plugins"
|
|
59
|
+
],
|
|
60
|
+
"topicSeparator": " ",
|
|
61
|
+
"topics": {
|
|
62
|
+
"hello": {
|
|
63
|
+
"description": "Say hello to the world and others"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"repository": "theryston/iconoma",
|
|
68
|
+
"types": "dist/index.d.ts",
|
|
69
|
+
"scripts": {
|
|
70
|
+
"postbuild": "node scripts/bundle-studio.js",
|
|
71
|
+
"build": "shx rm -rf dist && tsc -b",
|
|
72
|
+
"lint": "eslint",
|
|
73
|
+
"version": "oclif readme && git add README.md"
|
|
74
|
+
}
|
|
75
|
+
}
|