@4youblog/core 1.0.0

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/.env ADDED
@@ -0,0 +1 @@
1
+ NPM_TOKEN=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
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@4youblog/core",
3
+ "version": "1.0.0",
4
+ "keywords": [],
5
+ "author": {
6
+ "name": "Tr1gEr"
7
+ },
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "license": "ISC",
12
+ "type": "module",
13
+ "description": "Core utilities",
14
+ "peerDependencies": {
15
+ "prettier": "^3.0.0"
16
+ },
17
+ "dependencies": {
18
+ "@trivago/prettier-plugin-sort-imports": "^5.2.2"
19
+ },
20
+ "exports": {
21
+ "prettier": "./src/prettier.config.mjs"
22
+ }
23
+ }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @type {import("prettier").Config}
3
+ */
4
+
5
+ export default {
6
+ trailingComma: "none",
7
+ tabWidth: 4,
8
+ useTabs: true,
9
+ singleQuote: true,
10
+ jsxSingleQuote: true,
11
+ importOrderSeparation: true,
12
+ importOrderSortSpecifiers: true,
13
+ importOrderCaseInsensitive: true,
14
+ importOrderParserPlugins: ["typescript"],
15
+ importOrder: ["<THIRD_PARTY_MODULES>", "^@/(.*)&", "^../(.*)", "^./(.*)"],
16
+ plugins: ["@trivago/prettier-plugin-sort-imports"],
17
+ };