@texel/color 1.1.6 → 1.1.7

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,9 +1,12 @@
1
1
  {
2
2
  "name": "@texel/color",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "a minimal and modern color library",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
7
+ "exports": {
8
+ "import": "./src/index.js"
9
+ },
7
10
  "license": "MIT",
8
11
  "author": {
9
12
  "name": "Matt DesLauriers",
@@ -25,11 +28,10 @@
25
28
  "terser": "^5.31.3",
26
29
  "tsd-jsdoc": "^2.5.0"
27
30
  },
28
- "types": "./types/types.d.ts",
29
31
  "scripts": {
30
32
  "visualize": "canvas-sketch-cli test/canvas-graph.js --open",
31
33
  "docs": "jsdoc src -t node_modules/better-docs -c tools/.jsdoc.json -d docs -R DOC.md",
32
- "types": "jsdoc src -t node_modules/tsd-jsdoc/dist -c tools/.jsdoc.types.json -d types",
34
+ "types": "jsdoc src -t node_modules/tsd-jsdoc/dist -c tools/.jsdoc.types.json -d .",
33
35
  "test": "faucet test/test*.js",
34
36
  "bench": "node test/bench-colorjs.js",
35
37
  "bench:node": "NODE_ENV=production node --prof --no-logfile-per-isolate test/bench-node.js && node --prof-process v8.log",
File without changes