-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 882 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
37
38
39
{
"name": "vinbudin",
"version": "2.3.0",
"description": "Fetches product data from www.vinbudin.is",
"homepage": "https://github.com/valgeirb/vinbudin",
"engines": {
"node": ">=16.0.0"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts",
"release": "npm run build && npm publish && git push --follow-tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Valgeir Björnsson",
"email": "[email protected]",
"url": "https://github.com/valgeirb"
},
"license": "MIT",
"keywords": [
"vinbudin",
"vinbudin scraper"
],
"devDependencies": {
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"valibot": "^0.29.0"
}
}