-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "@febkosq8/local-save",
"private": false,
"type": "module",
"files": [
"dist",
"README.md"
],
"version": "0.5.1",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"repository": "https://github.com/febkosq8/local-save",
"scripts": {
"build": "tsup",
"lint": "eslint .",
"prettier": "prettier --write .",
"lint-fix": "eslint . --fix",
"push-npm": "tsup && npm publish --access public",
"test": "vitest"
},
"keywords": [
"IndexedDB",
"local-save",
"LocalSave",
"localStorage",
"secure",
"SubtleCrypto",
"AES-GCM"
],
"author": "Febkosq8",
"license": "ISC",
"description": "Lightweight wrapper around IndexedDB for secure and structured client-side data storage.",
"devDependencies": {
"@eslint/js": "9.17.0",
"@testing-library/jest-dom": "6.6.3",
"@types/crypto-js": "4.2.2",
"@vitest/browser": "2.1.8",
"@vitest/ui": "2.1.8",
"esbuild": "0.24.0",
"eslint": "9.17.0",
"eslint-plugin-prettier": "5.2.1",
"jsdom": "25.0.1",
"playwright": "1.49.1",
"prettier": "3.4.2",
"prettier-plugin-eslint": "1.0.2",
"prettier-plugin-organize-imports": "4.1.0",
"tsup": "8.3.5",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
}
}