-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.93 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "ourgroceries",
"version": "1.0.0",
"description": "Unofficial Node.js wrapper for the Our Groceries API",
"type": "module",
"source": "src/index.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "npm run build && vitest run && npm run lint && npm run format:check",
"test:watch": "vitest",
"example:minimal": "tsx --env-file=.env examples/minimal-usage.ts",
"example:readonly": "OG_READONLY=true tsx --env-file=.env examples/basic-usage.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"keywords": [
"ourgroceries",
"groceries",
"shopping",
"list",
"api",
"unofficial"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=22.14.0"
},
"dependencies": {
"got": "14.6.6",
"tough-cookie": "6.0.0"
},
"devDependencies": {
"@types/node": "24.10.1",
"@types/tough-cookie": "4.0.5",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-no-relative-import-paths": "1.6.1",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0",
"tsx": "4.21.0",
"vitest": "4.0.18",
"semantic-release": "24.1.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.2",
"@semantic-release/github": "12.0.6",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/release-notes-generator": "14.1.0"
}
}