-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.77 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
74
75
76
77
78
{
"name": "@qantesm/nanostorage",
"version": "1.0.2",
"description": "High-performance LocalStorage compression using native CompressionStream API. Zero-dependency, < 1KB, non-blocking.",
"author": {
"name": "Muhammet Ali Büyük",
"url": "https://github.com/qanteSm"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/qanteSm/NanoStorage.git"
},
"bugs": {
"url": "https://github.com/qanteSm/NanoStorage/issues"
},
"homepage": "https://github.com/qanteSm/NanoStorage#readme",
"keywords": [
"localstorage",
"compression",
"gzip",
"deflate",
"storage",
"async",
"web-api",
"compression-stream",
"pwa",
"cache",
"state-management",
"zero-dependency",
"lightweight"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"size": "size-limit",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.0.0",
"@types/node": "^20.10.0",
"eslint": "^8.55.0",
"happy-dom": "^12.10.0",
"prettier": "^3.1.0",
"size-limit": "^11.0.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"size-limit": [
{
"path": "dist/index.mjs",
"limit": "1 KB"
}
],
"engines": {
"node": ">=16.0.0"
}
}