-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.19 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
56
57
58
59
{
"name": "@we-gold/gpxjs",
"author": "Weaver Goldman <[email protected]>",
"description": "GPX.js is a modern library for parsing GPX files and converting them to GeoJSON.",
"version": "1.0.12",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/We-Gold/gpxjs"
},
"bugs": {
"url": "https://github.com/We-Gold/gpxjs/issues"
},
"keywords": [
"gpx",
"geojson",
"typescript",
"geolocation",
"apple-watch",
"gps"
],
"files": [
"dist"
],
"main": "./dist/gpxjs.umd.cjs",
"module": "./dist/gpxjs.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/gpxjs.js",
"require": "./dist/gpxjs.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"pack-test": "npm pack --dry-run",
"preview": "vite preview",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@vitest/browser": "^1.5.0",
"@wdio/cli": "^8.36.1",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vitest": "^1.5.0",
"xmldom-qsa": "^1.1.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"useTabs": true
}
}