Skip to content

Commit 45d4f2c

Browse files
committed
chore(dev): add tools
1 parent 424c63d commit 45d4f2c

5 files changed

Lines changed: 82 additions & 0 deletions

File tree

.prettierrc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
arrowParens: 'avoid'
2+
singleQuote: true
3+
bracketSpacing: true
4+
endOfLine: 'lf'
5+
semi: true
6+
tabWidth: 2
7+
trailingComma: 'none'

package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "flow.launcher.plugin.formatter",
3+
"version": "0.0.1",
4+
"main": "dist/main.js",
5+
"type": "module",
6+
"scripts": {
7+
"build": "tsc",
8+
"lint": "eslint"
9+
},
10+
"keywords": [
11+
"Flow Launcher",
12+
"Formatter",
13+
"Plugin"
14+
],
15+
"author": "Koalhack",
16+
"license": "MIT",
17+
"description": "Flow Launcher plugin to easily format text for multiples purposes.",
18+
"devDependencies": {
19+
"@types/node": "^22.13.10",
20+
"typescript": "^5.8.2"
21+
}
22+
}

plugin.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"ID": "32982da2-1056-4626-aaf3-08d42ec5ea66",
3+
"ActionKeyword": "ft",
4+
"Name": "Text Formatter",
5+
"Description": "Format any text (json, csv, etc.) to another and more",
6+
"Author": "Koalhack",
7+
"Version": "0.0.1",
8+
"Language": "javascript",
9+
"Website": "https://github.com/Koalhack/Flow.Launcher.Plugin.Formatter",
10+
"ExecuteFileName": "dist\\main.js",
11+
"IcoPath": "icon\\app.png"
12+
}

tsconfig.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"compilerOptions": {
3+
"esModuleInterop": true,
4+
"skipLibCheck": true,
5+
"target": "es2022",
6+
"allowJs": true,
7+
"resolveJsonModule": true,
8+
"moduleDetection": "force",
9+
"isolatedModules": true,
10+
"verbatimModuleSyntax": true,
11+
"strict": true,
12+
"noUncheckedIndexedAccess": true,
13+
"noImplicitOverride": true,
14+
"module": "NodeNext",
15+
"rootDir": "src",
16+
"outDir": "dist",
17+
"sourceMap": true,
18+
"lib": ["es2022"]
19+
},
20+
"include": ["src/**/*"]
21+
}

yarn.lock

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
"@types/node@^22.13.10":
6+
version "22.13.10"
7+
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.13.10.tgz#df9ea358c5ed991266becc3109dc2dc9125d77e4"
8+
integrity sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==
9+
dependencies:
10+
undici-types "~6.20.0"
11+
12+
typescript@^5.8.2:
13+
version "5.8.2"
14+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.2.tgz#8170b3702f74b79db2e5a96207c15e65807999e4"
15+
integrity sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==
16+
17+
undici-types@~6.20.0:
18+
version "6.20.0"
19+
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.20.0.tgz#8171bf22c1f588d1554d55bf204bc624af388433"
20+
integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==

0 commit comments

Comments
 (0)