-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.95 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.95 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@nano_kit/cookie-store",
"type": "module",
"version": "1.0.0-alpha.2",
"description": "A virutal CookieStore-compatible implementation for SSR and testing environments.",
"author": "dangreen",
"license": "MIT",
"homepage": "https://nano-kit.js.org/ssr/cookies",
"funding": "https://ko-fi.com/dangreen",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/nano_kit.git",
"directory": "packages/cookie-store"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/nano_kit/issues"
},
"keywords": [
"cookie",
"cookies",
"cookie-store",
"ssr",
"server",
"di",
"nano_kit"
],
"engines": {
"node": ">=20"
},
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
},
"publishConfig": {
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"directory": "package",
"linkDirectory": false
},
"files": [
"dist"
],
"scripts": {
"clear:package": "del ./package",
"clear:dist": "del ./dist",
"clear": "del ./package ./dist ./coverage",
"prepublishOnly": "run build clear:package clean-publish",
"postpublish": "pnpm clear:package",
"emitDeclarations": "tsgo -p ./tsconfig.build.json --emitDeclarationOnly",
"build:dist": "run -p emitDeclarations [ vite build ]",
"build": "run clear:dist build:dist",
"lint": "eslint --flag v10_config_lookup_from_file",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest watch",
"test:size": "size-limit",
"test:types": "tsgo --noEmit",
"test": "run -p lint test:unit test:types"
},
"devDependencies": {
"@size-limit/preset-small-lib": "catalog:",
"@vitest/coverage-v8": "catalog:",
"size-limit": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
}
}