-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.53 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
{
"name": "configuration-station",
"description": "a super simple wrapper for configstore that includes user prompting of said values in inquirer. so simply and easy i'm sure i fucked something up",
"main": "./index.js",
"version": "0.0.10",
"author": "dad <elliot@email.gd>",
"license": "The Unlicense",
"bin": "./index.js",
"type": "module",
"dependencies": {
"configstore": "^7.0.0",
"elliotisms": "^0.0.45",
"inquirer": "^11.1.0"
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": true,
"bracketSpacing": true,
"semi": false,
"experimentalTernaries": true,
"singleQuote": false,
"jsxSingleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "none",
"singleAttributePerLine": false,
"htmlWhitespaceSensitivity": "css",
"vueIndentScriptAndStyle": false,
"proseWrap": "preserve",
"insertPragma": false,
"printWidth": 80,
"requirePragma": false,
"tabWidth": 2,
"useTabs": false,
"embeddedLanguageFormatting": "auto"
},
"devDependencies": {
"@stylistic/eslint-plugin-js": "^2.8.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^3.8.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.0",
"prettier": "^3.3.3",
"release-it": "^17.7.0"
}
}