-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.81 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
60
61
62
63
64
65
66
{
"name": "nvector-geodesy",
"version": "0.0.0",
"description": "Functions for performing geographical position calculations using n-vectors",
"keywords": [
"distance",
"geodesy",
"geodetic",
"geodesic",
"geography",
"nvector",
"vector",
"wgs84"
],
"repository": "ezzatron/nvector-js",
"bugs": "https://github.com/ezzatron/nvector-js/issues",
"homepage": "https://ezzatron.com/nvector-js",
"author": "Erin Millard <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "artifacts/dist/index.js",
"types": "artifacts/dist/index.d.ts",
"exports": {
".": {
"types": "./artifacts/dist/index.d.ts",
"import": "./artifacts/dist/index.js",
"default": "./artifacts/dist/index.js"
}
},
"sideEffects": false,
"files": [
"/artifacts/dist/"
],
"scripts": {
"prepublishOnly": "tsc -p tsconfig.build.json"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@fast-check/vitest": "^0.1.0",
"@size-limit/preset-small-lib": "^11.1.2",
"@skypack/package-check": "^0.2.2",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-vitest": "^0.4.1",
"prettier": "^3.0.3 <3.4.3",
"prettier-plugin-organize-imports": "^4.0.0",
"publint": "^0.2.7",
"size-limit": "^11.1.2",
"typedoc": "^0.27.0",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^5.0.0",
"vitest": "^2.0.0",
"ws": "^8.14.2"
}
}