-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "quadkey-tilemath",
"version": "0.1.2",
"description": "Tile System math for the Spherical Mercator projection coordinate system (EPSG:3857)",
"keywords": [
"quadkey",
"longitude",
"latitude",
"geocode",
"mercator"
],
"author": "glassonion1",
"homepage": "https://github.com/glassonion1/quadkey-tilemath",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:glassonion1/quadkey-tilemath.git"
},
"license": "MIT",
"type": "module",
"main": "dist/index.cjs.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"lint": "run-s lint:*",
"lint:lint": "biome lint --write --diagnostic-level=error src/*",
"lint:prettier": "prettier --write --ignore-path .gitignore './src/*.ts'",
"dev": "vite",
"prebuild": "rimraf dist",
"build": "run-p build:*",
"build:scripts": "vite build",
"build:types": "tsc && tsc-alias",
"test": "vitest"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"npm-run-all2": "^7.0.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vitest": "^2.1.8"
}
}