generated from zero-dependency/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.52 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
{
"name": "@zero-dependency/cookie",
"version": "1.13.7",
"description": "Cookie parser and serializer",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"document.cookie",
"cookie",
"cookies",
"wrapper",
"parser",
"serializer",
"zero-dependency"
],
"license": "MIT",
"homepage": "https://github.com/zero-dependency",
"repository": {
"type": "git",
"url": "https://github.com/zero-dependency/zero-dependency.git",
"directory": "packages/cookie"
},
"bugs": {
"url": "https://github.com/zero-dependency/cookie/issues"
},
"author": {
"name": "Vitalij Ryndin",
"email": "sys@crashmax.ru",
"url": "https://crashmax.ru"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"test": "vitest run --coverage",
"test:watch": "vitest --ui --watch --coverage",
"format": "prettier --write --ignore-unknown **"
},
"devDependencies": {
"@crashmax/prettier-config": "5.0.1",
"@crashmax/tsconfig": "2.1.0",
"@types/node": "20.11.10",
"@vitest/coverage-v8": "1.2.2",
"@vitest/ui": "1.2.2",
"jsdom": "24.0.0",
"typescript": "5.3.3",
"vite": "5.0.12",
"vite-plugin-dts": "3.7.2",
"vitest": "1.2.2"
},
"dependencies": {
"@zero-dependency/utils": "workspace:1.7.7"
}
}