-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 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
{
"name": "shpts",
"private": false,
"version": "1.1.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/vojtatom/shp.ts"
},
"keywords": [
"shapefile",
"esri",
"shp",
"shx",
"dbf"
],
"author": {
"name": "Vojtěch Tomas",
"email": "[email protected]",
"url": "https://vojtatom.cz"
},
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "./dist/shpts.umd.js",
"module": "./dist/shpts.js",
"types": "./dist/shpts.d.ts",
"exports": {
".": {
"import": "./dist/shpts.js",
"require": "./dist/shpts.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-dts": "^2.0.0-beta.3",
"vitest": "^0.30.1"
},
"dependencies": {
"gl-matrix": "^3.4.3"
}
}