-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.89 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
{
"name": "dscimg",
"description": "Rename images based on the results of some dumb ai bullshit",
"author": "ɛʟʟɨօȶ b =^._.^= ∫ <elliot@email.gd>",
"license": "The Unlicense",
"main": "index.js",
"bin": "./index.js",
"version": "0.0.16",
"type": "module",
"scripts": {
"test": "node index.js ./test.jpg"
},
"devDependencies": {
"@stylistic/eslint-plugin-js": "^2.11.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^4.0.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"prettier": "^3.3.3",
"release-it": "^17.10.0"
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": true,
"bracketSpacing": true,
"semi": false,
"experimentalTernaries": true,
"singleQuote": false,
"jsxSingleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "es5",
"singleAttributePerLine": false,
"htmlWhitespaceSensitivity": "css",
"vueIndentScriptAndStyle": false,
"proseWrap": "always",
"insertPragma": false,
"printWidth": 105,
"requirePragma": false,
"endOfLine": "lf",
"tabWidth": 4,
"useTabs": false,
"embeddedLanguageFormatting": "auto"
},
"dependencies": {
"@napi-rs/xattr": "^1.0.1",
"chalk": "^5.3.0",
"configuration-station": "^0.0.10",
"dotenv": "^16.4.5",
"elliotisms": "^0.0.51",
"fdir": "^6.4.2",
"junk": "^4.0.1",
"node-tesseract-ocr": "^2.2.1",
"picomatch": "^4.x",
"sharp": "^0.33.5",
"yargs": "^17.7.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}