@turf/line-intersect 7.0.0-alpha.0 → 7.0.0-alpha.1

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 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turf/line-intersect",
3
- "version": "7.0.0-alpha.0",
3
+ "version": "7.0.0-alpha.1",
4
4
  "description": "turf line-intersect module",
5
5
  "author": "Turf Authors",
6
6
  "contributors": [
@@ -32,6 +32,7 @@
32
32
  "exports": {
33
33
  "./package.json": "./package.json",
34
34
  ".": {
35
+ "types": "./dist/js/index.d.ts",
35
36
  "import": "./dist/es/index.js",
36
37
  "require": "./dist/js/index.js"
37
38
  }
@@ -42,30 +43,30 @@
42
43
  "dist"
43
44
  ],
44
45
  "scripts": {
45
- "bench": "ts-node bench.js",
46
+ "bench": "tsx bench.js",
46
47
  "build": "npm-run-all build:*",
47
48
  "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
48
49
  "build:js": "tsc",
49
- "docs": "node ../../scripts/generate-readmes",
50
+ "docs": "tsx ../../scripts/generate-readmes",
50
51
  "test": "npm-run-all test:*",
51
- "test:tape": "ts-node -r esm test.js"
52
+ "test:tape": "tsx test.js"
52
53
  },
53
54
  "devDependencies": {
54
- "@turf/truncate": "^7.0.0-alpha.0",
55
+ "@turf/truncate": "^7.0.0-alpha.1",
55
56
  "@types/tape": "*",
56
57
  "benchmark": "*",
57
58
  "load-json-file": "*",
58
59
  "npm-run-all": "*",
59
60
  "tape": "*",
60
- "ts-node": "*",
61
61
  "tslint": "*",
62
+ "tsx": "*",
62
63
  "typescript": "*",
63
64
  "write-json-file": "*"
64
65
  },
65
66
  "dependencies": {
66
- "@turf/helpers": "^7.0.0-alpha.0",
67
+ "@turf/helpers": "^7.0.0-alpha.1",
67
68
  "sweepline-intersections": "^1.4.0",
68
69
  "tslib": "^2.3.0"
69
70
  },
70
- "gitHead": "0edc4c491b999e5ace770a61e1cf549f7c004189"
71
+ "gitHead": "cf7a0c507b017ca066acffd0ce23bda5b393fb5a"
71
72
  }