-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "nostr-geotags",
"version": "0.7.1",
"description": "Give an object of geodata, returns standardized nostr geotags ",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/sandwichfarm/nostr-geotags",
"author": "sandwich <[email protected]> ",
"license": "MIT",
"keywords": [
"nostr",
"nostr-event",
"nostr-tags",
"nostr-tag",
"geo",
"geo-tag",
"iso-3166",
"iso-3166-1",
"iso-3166-2",
"iso-3166-3",
"transform"
],
"dependencies": {
"iso-3166": "4.3.0",
"ngeohash": "0.6.3"
},
"scripts": {
"build": "tsc",
"test": "vitest",
"test-ui": "vitest --ui --coverage.enabled=true",
"start": "node dist/app.js",
"dev": "tsc-watch --onSuccess 'node dist/app.js'",
"lint": "eslint . --ext .ts",
"coverage": "vitest run --reporter=junit --coverage.reporter=json-summary --coverage.enabled=true",
"docs": "tsdoc"
},
"devDependencies": {
"@types/ngeohash": "0.6.8",
"@vitest/coverage-v8": "1.0.4",
"@vitest/ui": "1.0.4",
"tsdoc": "^0.0.4",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "4.2.2",
"vitest": "1.0.4"
}
}