-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 851 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 851 Bytes
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
{
"name": "gadm-client",
"version": "0.1.0",
"description": "My TypeScript Library",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:watch": "vitest"
},
"keywords": [
"typescript",
"library"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/WaterPath-Project/gadm-client"
},
"bugs": {
"url": "https://github.com/WaterPath-Project/gadm-client/issues"
},
"homepage": "https://github.com/WaterPath-Project/gadm-client#readme",
"dependencies": {
"@ngageoint/geopackage": "^4.2.6",
"vitest": "^2.1.2"
},
"devDependencies": {
"browserify": "^17.0.1",
"tsup": "^8.3.0"
}
}