clipper2-ts 1.5.4-3.9a869ba → 1.5.4-4.9a869ba

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/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,20 +1,20 @@
1
1
  # clipper2-ts
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@countertype/clipper2-ts.svg)](https://www.npmjs.com/package/@countertype/clipper2-ts)
4
- [![license](https://img.shields.io/npm/l/@countertype/clipper2-ts.svg)](https://github.com/countertype/clipper2-ts/blob/main/LICENSE)
3
+ [![npm version](https://img.shields.io/npm/v/clipper2-ts.svg)](https://www.npmjs.com/package/clipper2-ts)
4
+ [![license](https://img.shields.io/npm/l/clipper2-ts.svg)](https://github.com/countertype/clipper2-ts/blob/main/LICENSE)
5
5
 
6
6
  TypeScript port of Angus Johnson's [Clipper2](https://github.com/AngusJohnson/Clipper2) library for polygon clipping and offsetting
7
7
 
8
8
  ## Installation
9
9
 
10
10
  ```bash
11
- npm install @countertype/clipper2-ts
11
+ npm install clipper2-ts
12
12
  ```
13
13
 
14
14
  ## Usage
15
15
 
16
16
  ```typescript
17
- import { Clipper, FillRule, JoinType, EndType } from '@countertype/clipper2-ts';
17
+ import { Clipper, FillRule, JoinType, EndType } from 'clipper2-ts';
18
18
 
19
19
  // Define polygons as arrays of points
20
20
  const subject = [[
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clipper2-ts",
3
- "version": "1.5.4-3.9a869ba",
3
+ "version": "1.5.4-4.9a869ba",
4
4
  "description": "TypeScript port of Clipper2 polygon clipping and offsetting library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",