-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "cookie-muncher",
"description": "Effortless cookie management for server and browser",
"version": "0.4.6",
"license": "MIT",
"author": "Bluzzi",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --minify --format cjs,esm --clean --dts",
"test": "vitest --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ts:check": "tsc --noEmit"
},
"homepage": "https://github.com/Bluzzi/cookie-muncher#readme",
"bugs": {
"url": "https://github.com/Bluzzi/cookie-muncher/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bluzzi/cookie-muncher.git"
},
"devDependencies": {
"@bluzzi/eslint-config": "^2.0.0",
"@types/node": "^22.10.5",
"@vitest/ui": "^2.1.8",
"eslint": "^9.18.0",
"jsdom": "^26.0.0",
"tsup": "^8.0.1",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"keywords": [
"cookie",
"cookies",
"browser",
"client",
"http",
"https",
"parser",
"serializer",
"amd",
"cjs",
"commonjs",
"esm",
"typescript",
"typesafe",
"rfc6265"
]
}