-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.98 KB
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
67
68
69
70
71
72
73
{
"name": "@tabaqat/geocoding-sdk",
"version": "0.4.3",
"description": "Browser-based geocoding SDK using DuckDB-WASM",
"module": "src/index.ts",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rm -rf dist",
"build": "bun run clean && bun build src/index.ts --outdir dist --target browser && tsc -p tsconfig.build.json",
"build:check": "bun run build && test -f dist/index.d.ts || (echo 'ERROR: Type definitions not generated!' && exit 1)",
"dev": "bun run --watch src/demo.ts",
"test": "bun test",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"docs": "typedoc",
"docs:json": "typedoc --json examples/react/app/data/api-docs.json --emit none",
"prepare": "husky",
"prepublishOnly": "bun run lint && bun run typecheck && bun run build:check"
},
"keywords": [
"geocoding",
"reverse-geocoding",
"wasm",
"duckdb",
"browser",
"saudi-arabia",
"arabic",
"h3",
"parquet",
"offline"
],
"author": "Tabaqat",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tabaqatdev/geocoding-sdk.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typedoc": "^0.28.17",
"typescript": "^5.9.3"
},
"dependencies": {
"@duckdb/duckdb-wasm": "1.33.1-dev18.0"
}
}