-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1016 Bytes
/
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
{
"name": "tiles-provider",
"version": "1.5.0",
"description": "Get URLs of map tiles from different providers",
"scripts": {
"build": "npm run test && tsup src/index.ts --dts --format esm,cjs",
"dev": "npm run build -- --watch",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui --watch --open=false",
"test:coverage": "vitest run --coverage",
"release": "npm run build && np"
},
"keywords": [],
"author": {
"name": "Mattèo Gauthier",
"email": "[email protected]",
"url": "https://matteogauthier.fr"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@vitest/coverage-c8": "^0.25.8",
"@vitest/ui": "^0.25.8",
"np": "^7.7.0",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"vitest": "^0.25.8"
}
}