misaki-studio-internal 0.1.7 → 0.1.8

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,12 +1,15 @@
1
1
  {
2
2
  "name": "misaki-studio-internal",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "main": "dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {
7
7
  "build": "webpack",
8
8
  "publish": "npm publish --access public"
9
9
  },
10
+ "files": [
11
+ "./dist"
12
+ ],
10
13
  "dependencies": {
11
14
  "@types/lodash": "4.14.202",
12
15
  "axios": "0.25.0",
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/basic-features/typescript for more information.
package/tsconfig.json DELETED
@@ -1,16 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "outDir": "./dist",
4
- "target": "es5",
5
- "module": "esnext",
6
- "jsx": "react-jsx",
7
- "declaration": true,
8
- "strict": true,
9
- "moduleResolution": "node",
10
- "esModuleInterop": true,
11
- "forceConsistentCasingInFileNames": true,
12
- "lib": ["dom", "esnext"],
13
- },
14
- "include": ["src/**/*.ts", "src/**/*.tsx", "src/styles.d.ts"],
15
- "exclude": ["node_modules", "dist"],
16
- }
package/webpack.config.js DELETED
@@ -1,37 +0,0 @@
1
- const path = require("path");
2
-
3
- module.exports = {
4
- mode: "production",
5
- entry: "./src/index.ts", // or .tsx if your main entry is a React component
6
- output: {
7
- path: path.resolve(__dirname, "dist"),
8
- filename: "index.js",
9
- },
10
- resolve: {
11
- extensions: [".ts", ".tsx", ".js", ".jsx", ".json"],
12
- },
13
- module: {
14
- rules: [
15
- {
16
- test: /\.(ts|tsx)$/,
17
- exclude: /node_modules/,
18
- use: "ts-loader",
19
- },
20
- {
21
- test: /\.(module.scss)$/, // Matches .scss and .sass files
22
- use: [
23
- "style-loader",
24
- "css-loader",
25
- {
26
- loader: "sass-loader",
27
- },
28
- ],
29
- },
30
- ],
31
- },
32
- externals: {
33
- react: "react",
34
- "react-dom": "react-dom",
35
- "next/router": "next/router",
36
- },
37
- };