-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "expirix",
"version": "0.0.2",
"description": "A storage wrapper that adds expiration functionality to localStorage and sessionStorage",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run build:rolldown && npm run build:types",
"build:rolldown": "rolldown -c rolldown.config.js",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"clean": "rm -rf dist",
"test": "vitest run",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"prepublishOnly": "npm run build",
"playground": "vite"
},
"keywords": [
"storage",
"localStorage",
"sessionStorage",
"expiration",
"ttl"
],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/node": "^24.0.1",
"@vitest/browser": "^3.2.3",
"@vitest/ui": "^3.2.3",
"playwright": "^1.53.0",
"rolldown": "^1.0.0-beta.15",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.3"
}
}