fluxion-ts 0.0.8 → 0.0.9

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.
Files changed (1) hide show
  1. package/package.json +9 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluxion-ts",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "author": {
5
5
  "name": "Kasukabe Tsumugi",
6
6
  "email": "futami16237@gmail.com"
@@ -9,10 +9,15 @@
9
9
  "description": "Fluxion is able to start a server that can dynamically load routers and js files. It is designed to be used to replace PHP",
10
10
  "description_zh": "Fluxion可以启动一个能够动态加载路由和js文件的服务器,旨在替代PHP",
11
11
  "type": "module",
12
+ "main": "./dist/index.mjs",
13
+ "module": "./dist/index.mjs",
14
+ "types": "./dist/index.d.ts",
12
15
  "exports": {
13
- "import": "./index.mjs",
14
- "default": "./index.mjs",
15
- "types": "./index.d.ts"
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.mjs",
19
+ "default": "./dist/index.mjs"
20
+ }
16
21
  },
17
22
  "files": [
18
23
  "dist"