-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 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
{
"name": "apple-maps-server-sdk",
"version": "1.1.9",
"description": "An SDK for the Apple Maps Server API",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/cjs/index.d.ts",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts"
}
},
"scripts": {
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JS00001/apple-maps-server-sdk.git"
},
"keywords": [
"apple",
"mapkit",
"apple-mapkit",
"apple-maps",
"maps",
"sdk"
],
"author": "JS00001",
"license": "ISC",
"bugs": {
"url": "https://github.com/JS00001/apple-maps-server-sdk/issues"
},
"homepage": "https://github.com/JS00001/apple-maps-server-sdk#readme",
"devDependencies": {
"@types/qs": "^6.9.7",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.2.2",
"qs": "^6.11.0"
}
}