-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1001 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
{
"name": "personalwalletpasses",
"version": "0.0.3",
"description": "A simple utility to improve the workflow of creating PKPass files.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist && mkdir dist && tsc",
"start": "tsc && node dist/index.js",
"lint": "eslint \"**/*.{ts,js}\"",
"lint:fix": "npm run lint --fix",
"cli:install": "npm run build && yarn global add \"file:$PWD\"",
"cli:uninstall": "yarn global remove personalwalletpasses"
},
"keywords": [
"pkpass",
"apple wallet",
"wallet pass"
],
"author": "SoCuul",
"license": "ISC",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"ora": "^8.0.0",
"passkit-generator": "^3.1.11"
}
}