-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.75 KB
/
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
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
71
72
73
74
{
"name": "webrestaw",
"version": "0.0.0",
"description": "An awmazing API wrapper for WebResto",
"repository": "github:LiterateInk/WebRestaw",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsup src/index.ts --dts --minify terser --clean --format cjs,esm --sourcemap",
"release": "release-it",
"lint": "tsc && eslint .",
"test": "bun test"
},
"files": [
"dist"
],
"keywords": [
"webresto",
"api",
"wrapper",
"France"
],
"author": "Mikkel RINGAUD <[email protected]> (https://github.com/Vexcited)",
"homepage": "https://github.com/LiterateInk/WebRestaw#README",
"bugs": {
"url": "https://github.com/LiterateInk/WebRestaw/issues"
},
"license": "GPL-3.0",
"engines": {
"node": ">=18"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagAnnotation": "Release v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"draft": false,
"releaseName": "v${version}"
},
"npm": {
"publish": true
},
"hooks": {
"before:init": "pnpm lint",
"after:bump": "pnpm build"
}
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.7.0",
"@types/bun": "^1.0.10",
"@types/node": "^20.11.30",
"@types/set-cookie-parser": "^2.4.7",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"release-it": "^17.1.1",
"terser": "^5.29.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"dependencies": {
"set-cookie-parser": "^2.6.0"
}
}