-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 1023 Bytes
/
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
{
"name": "trackerlib",
"version": "0.1.0",
"description": "Tools for processing of GPS data and working with routes.",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"files": [
"build/"
],
"scripts": {
"start": "npm run build && node build/index.js",
"start:dev": "nodemon",
"lint": "prettier --list-different 'src/*.ts'",
"build": "rimraf ./build; typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts; npm run build:esm; npm run build:cjs",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig-cjs.json",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.15.3",
"nodemon": "^2.0.14",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typedoc": "^0.23.26",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
},
"dependencies": {
"chaikin-smooth": "^1.0.4",
"geolib": "^3.3.3",
"serializr": "^3.0.2"
}
}