-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 970 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 970 Bytes
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
{
"name": "waitrose",
"version": "1.2.0",
"description": "CLI and API client for Waitrose grocery shopping",
"type": "module",
"main": "./waitrose.ts",
"types": "./waitrose.ts",
"exports": {
".": {
"import": "./waitrose.ts",
"types": "./waitrose.ts"
}
},
"bin": {
"waitrose": "./src/cli.ts"
},
"files": [
"src",
"waitrose.ts"
],
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun build src/cli.ts --compile --outfile dist/waitrose",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"keywords": [
"waitrose",
"grocery",
"cli",
"shopping",
"bun",
"api"
],
"author": "Jonas Templestein",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jonastemplestein/waitrose.git"
},
"homepage": "https://github.com/jonastemplestein/waitrose#readme"
}