@next-degree/pickle-shared-js 0.3.3 → 0.3.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-degree/pickle-shared-js",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -59,8 +59,8 @@
59
59
  "typescript": "^5"
60
60
  },
61
61
  "peerDependencies": {
62
- "react": "^19.0.0-rc-02c0e824-20241028",
63
- "react-dom": "^19.0.0-rc-02c0e824-20241028"
62
+ "react": "^18.0.0",
63
+ "react-dom": "^18.0.0"
64
64
  },
65
65
  "lint-staged": {
66
66
  "**/*.{ts,tsx}": [
@@ -77,5 +77,9 @@
77
77
  "bugs": {
78
78
  "url": "https://github.com/Next-Degree/pickle-shared-js/issues"
79
79
  },
80
- "homepage": "https://github.com/Next-Degree/pickle-shared-js#readme"
80
+ "homepage": "https://github.com/Next-Degree/pickle-shared-js#readme",
81
+ "files": [
82
+ "dist",
83
+ "README.md"
84
+ ]
81
85
  }
package/.eslintrc.cjs DELETED
@@ -1,58 +0,0 @@
1
- /** @type {import("eslint").Linter.Config} */
2
- const config = {
3
- parser: "@typescript-eslint/parser",
4
- parserOptions: {
5
- project: true,
6
- },
7
- plugins: ["@typescript-eslint", "jest", "simple-import-sort"],
8
- extends: [
9
- "next/core-web-vitals",
10
- "plugin:@typescript-eslint/recommended-type-checked",
11
- "plugin:@typescript-eslint/stylistic-type-checked",
12
- ],
13
- overrides: [
14
- {
15
- files: ["test/unit/**/*.js", "test/unit/**/*.ts", "**/*.test.ts"],
16
- extends: ["plugin:jest/recommended"],
17
- rules: {
18
- //"jest/expect-expect": "off",
19
- //"jest/no-disabled-tests": "off",
20
- //"jest/no-conditional-expect": "off",
21
- //"jest/valid-title": "off",
22
- //"jest/no-interpolation-in-snapshots": "off",
23
- //"jest/no-export": "off"
24
- },
25
- },
26
- ],
27
- rules: {
28
- "@typescript-eslint/array-type": "off",
29
- "@typescript-eslint/consistent-type-definitions": "off",
30
- "@typescript-eslint/consistent-type-imports": [
31
- "warn",
32
- {
33
- prefer: "type-imports",
34
- fixStyle: "inline-type-imports",
35
- },
36
- ],
37
- "@typescript-eslint/no-unused-vars": [
38
- "warn",
39
- {
40
- argsIgnorePattern: "^_",
41
- },
42
- ],
43
- "@typescript-eslint/require-await": "off",
44
- "@typescript-eslint/no-misused-promises": [
45
- "error",
46
- {
47
- checksVoidReturn: {
48
- attributes: false,
49
- },
50
- },
51
- ],
52
- "simple-import-sort/imports": "warn",
53
- "simple-import-sort/exports": "warn",
54
- },
55
- };
56
- module.exports = config;
57
-
58
- // https://github.com/vercel/next.js/blob/canary/.eslintrc.json
package/next-env.d.ts DELETED
@@ -1,5 +0,0 @@
1
- /// <reference types="next" />
2
- /// <reference types="next/image-types/global" />
3
-
4
- // NOTE: This file should not be edited
5
- // see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
package/next.config.ts DELETED
@@ -1,7 +0,0 @@
1
- import type { NextConfig } from 'next'
2
-
3
- const nextConfig: NextConfig = {
4
- /* config options here */
5
- }
6
-
7
- export default nextConfig
@@ -1,9 +0,0 @@
1
- /** @type {import('postcss-load-config').Config} */
2
- const config = {
3
- plugins: {
4
- tailwindcss: {},
5
- autoprefixer: {},
6
- },
7
- };
8
-
9
- export default config;
@@ -1,11 +0,0 @@
1
- /** @type {import('prettier').Config & import('prettier-plugin-tailwindcss').PluginOptions} */
2
- const config = {
3
- plugins: ['prettier-plugin-tailwindcss'],
4
- singleQuote: true,
5
- trailingComma: 'es5',
6
- printWidth: 100,
7
- semi: false,
8
- endOfLine: 'auto',
9
- }
10
-
11
- export default config