nanoplot 0.0.1 → 0.0.2

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/dist/index.js CHANGED
@@ -1 +1 @@
1
- const placeholder = "placehloder";
1
+ const placeholder = "placehlode2r";
package/package.json CHANGED
@@ -1,32 +1,30 @@
1
- {
2
- "name": "nanoplot",
3
- "version": "0.0.1",
4
- "private": false,
5
- "types": "dist/export/index.d.ts",
6
- "main": "dist/index.js",
7
- "scripts": {
8
- "dev": "next dev",
9
- "build": "next build",
10
- "start": "next start",
11
- "test": "bun test --watch"
12
- },
13
- "dependencies": {
14
- "next": "15.0.3",
15
- "react": "19.0.0-rc-66855b96-20241106",
16
- "react-dom": "19.0.0-rc-66855b96-20241106"
17
- },
18
- "devDependencies": {
19
- "@happy-dom/global-registrator": "^15.11.6",
20
- "@testing-library/dom": "^10.4.0",
21
- "@testing-library/react": "^16.0.1",
22
- "@types/node": "^20",
23
- "@types/react": "^18",
24
- "@types/react-dom": "^18",
25
- "bun-types": "^1.1.36",
26
- "postcss": "^8",
27
- "prettier": "^3.3.3",
28
- "sass": "^1.80.6",
29
- "tailwindcss": "^3.4.1",
30
- "typescript": "^5"
31
- }
32
- }
1
+ {
2
+ "name": "nanoplot",
3
+ "version": "0.0.2",
4
+ "private": false,
5
+ "types": "dist/export/index.d.ts",
6
+ "main": "dist/index.js",
7
+ "scripts": {
8
+ "dev": "next dev",
9
+ "build": "next build",
10
+ "start": "next start",
11
+ "test": "bun test --watch"
12
+ },
13
+ "devDependencies": {
14
+ "@happy-dom/global-registrator": "^15.11.6",
15
+ "@testing-library/dom": "^10.4.0",
16
+ "@testing-library/react": "^16.0.1",
17
+ "@types/node": "^20",
18
+ "@types/react": "^18",
19
+ "@types/react-dom": "^18",
20
+ "bun-types": "^1.1.36",
21
+ "next": "15.0.3",
22
+ "postcss": "^8",
23
+ "prettier": "^3.3.3",
24
+ "react": "19.0.0-rc-66855b96-20241106",
25
+ "react-dom": "19.0.0-rc-66855b96-20241106",
26
+ "sass": "^1.80.6",
27
+ "tailwindcss": "^3.4.1",
28
+ "typescript": "^5"
29
+ }
30
+ }
package/.prettierrc DELETED
@@ -1,16 +0,0 @@
1
- {
2
- "printWidth": 140,
3
- "tabWidth": 4,
4
- "useTabs": true,
5
- "arrowParens": "always",
6
- "parser": "typescript",
7
- "trailingComma": "all",
8
- "overrides": [
9
- {
10
- "files": "*.json",
11
- "options": {
12
- "parser": "json"
13
- }
14
- }
15
- ]
16
- }
package/happydom.ts DELETED
@@ -1,3 +0,0 @@
1
- import { GlobalRegistrator } from "@happy-dom/global-registrator";
2
-
3
- GlobalRegistrator.register();
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.js DELETED
@@ -1,16 +0,0 @@
1
- module.exports = {
2
- webpack: (config) => {
3
- // camelCase style names from css modules
4
- config.module.rules
5
- .find(({ oneOf }) => !!oneOf)
6
- .oneOf.filter(({ use }) => JSON.stringify(use)?.includes("css-loader"))
7
- .reduce((acc, { use }) => acc.concat(use), [])
8
- .forEach(({ options }) => {
9
- if (options.modules) {
10
- options.modules.exportLocalsConvention = "camelCaseOnly";
11
- }
12
- });
13
-
14
- return config;
15
- },
16
- };
@@ -1,8 +0,0 @@
1
- /** @type {import('postcss-load-config').Config} */
2
- const config = {
3
- plugins: {
4
- tailwindcss: {},
5
- },
6
- };
7
-
8
- export default config;
@@ -1,18 +0,0 @@
1
- import type { Config } from "tailwindcss";
2
-
3
- export default {
4
- content: [
5
- "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
6
- "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
7
- "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
8
- ],
9
- theme: {
10
- extend: {
11
- colors: {
12
- background: "var(--background)",
13
- foreground: "var(--foreground)",
14
- },
15
- },
16
- },
17
- plugins: [],
18
- } satisfies Config;