-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.36 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
{
"name": "simple-cookie-service",
"version": "3.0.1",
"description": "A universal cookie management library for browsers, Node.js, and all major frontend frameworks.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
"import": "./lib/index.mjs",
"require": "./lib/index.js"
},
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --outDir lib",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhisek-dhua/simple-cookie-service.git"
},
"keywords": [
"cookie",
"simple cookie",
"cookie service",
"cookie handler",
"cookie manager",
"cookie management",
"add edit delete cookie",
"universal",
"nodejs",
"browser",
"framework-agnostic",
"typescript",
"react",
"vue",
"angular",
"svelte",
"nextjs",
"nuxt",
"remix",
"solidjs",
"preact"
],
"author": "Abhisek Dhua <abhisek.dhua@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/abhisek-dhua/simple-cookie-service/issues"
},
"homepage": "https://github.com/abhisek-dhua/simple-cookie-service#readme",
"devDependencies": {
"tsup": "^8.5.0",
"typescript": "^5.0.3"
},
"engines": {
"node": ">=12.7.0"
},
"sideEffects": false,
"files": [
"lib/**/*"
]
}