-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "valistorage",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test:watch": "vitest",
"test": "vitest --no-watch"
},
"author": "Maksym Levytskyi https://github.com/gmaxlev",
"license": "MIT",
"description": "A library for efficiently managing data in localStorage and sessionStorage using versioning and migrations.",
"keywords": [
"localStorage",
"sessionStorage",
"storage",
"data",
"versioning",
"migrations"
],
"homepage": "https://github.com/gmaxlev/valistorage",
"repository": {
"type": "git",
"url": "https://github.com/gmaxlev/valistorage.git"
},
"bugs": "https://github.com/gmaxlev/valistorage/issues",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jsdom": "^22.1.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "*",
"vite": "^4.4.5",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-dts": "^3.6.0",
"vitest": "^0.34.6"
}
}