@certe/atmos-math 0.2.0 → 0.4.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.
Files changed (2) hide show
  1. package/package.json +3 -7
  2. package/src/index.ts +0 -9
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@certe/atmos-math",
3
3
  "description": "Lightweight Float32Array math library for the Atmos Engine — Vec3, Mat4, Quat, Ray",
4
- "version": "0.2.0",
4
+ "version": "0.4.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/certesolutions-cyber/atmos.git",
@@ -19,12 +19,8 @@
19
19
  "atmos"
20
20
  ],
21
21
  "type": "module",
22
- "main": "src/index.ts",
23
- "types": "src/index.ts",
24
- "publishConfig": {
25
- "main": "dist/index.js",
26
- "types": "dist/index.d.ts"
27
- },
22
+ "main": "dist/index.js",
23
+ "types": "dist/index.d.ts",
28
24
  "files": [
29
25
  "dist",
30
26
  "!dist/__tests__",
package/src/index.ts DELETED
@@ -1,9 +0,0 @@
1
- export * as Vec3 from './vec3.js';
2
- export * as Mat4 from './mat4.js';
3
- export * as Quat from './quat.js';
4
- export * as Ray from './ray.js';
5
- export type { Vec3 as Vec3Type } from './vec3.js';
6
- export type { Mat4 as Mat4Type } from './mat4.js';
7
- export type { Quat as QuatType } from './quat.js';
8
- export type { Ray as RayType } from './ray.js';
9
- export { valueNoise2D, fbm, perlinNoise3D, fbm3D } from './noise.js';