-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 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
{
"name": "mapkitjs-token",
"version": "0.0.0-semantic-release",
"description": "Generate MapKit JS tokens",
"author": "Kevin Chung <[email protected]>",
"homepage": "https://github.com/kchung/mapkitjs-token",
"bugs": {
"url": "https://github.com/kchung/mapkitjs-token/issues"
},
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"keywords": [
"mapkit-js",
"mapkit",
"token",
"jwt",
"apple"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kchung/mapkitjs-token.git"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "vitest"
},
"files": [
"dist/*.js"
],
"bin": {
"mapkitjs-token": "dist/cli.js"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.9",
"@types/ms": "^2.1.0",
"@types/yargs": "^17.0.33",
"conventional-changelog-conventionalcommits": "^9.0.0",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"dependencies": {
"chalk": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"ms": "^2.1.2",
"yargs": "^17.7.2"
}
}