generated from jasonsturges/vite-typescript-npm-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·55 lines (55 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "turf-polygon-slice",
"version": "0.1.3",
"description": "Slices Polygon using a LineString",
"license": "ISC",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/millcrest/turf-polygon-slice.git"
},
"homepage": "https://github.com/millcrest/turf-polygon-slice",
"scripts": {
"dev": "tsc && vite build --watch",
"start": "vite --host --open",
"build": "tsc && vite build",
"build:types": "dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"lint:scripts": "eslint . --ext .ts",
"format:scripts": "prettier . --write"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^7.0.0-alpha.2",
"@turf/difference": "^7.0.0-alpha.2",
"@turf/helpers": "^7.0.0-alpha.2",
"@turf/invariant": "^7.0.0-alpha.2",
"@turf/line-intersect": "^7.0.0-alpha.2",
"@turf/line-offset": "^7.0.0-alpha.2",
"@turf/line-overlap": "^7.0.0-alpha.2",
"@turf/line-to-polygon": "^7.0.0-alpha.2",
"@turf/unkink-polygon": "^7.0.0-alpha.2",
"geojson": "^0.5.0",
"robust-predicates": "^3.0.2"
},
"devDependencies": {
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.0.4",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.6.4"
}
}