-
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) · 2.05 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.05 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": "storeage",
"version": "0.3.0",
"description": "High-performance Offline Storage with localStorage-like API and Enhanced Capabilities",
"main": "dist/storeage.esm.js",
"module": "dist/storeage.esm.js",
"browser": "dist/storeage.umd.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"homepage": "https://storeage-three.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/gamejoye/storeage.git"
},
"files": [
"dist",
"README.md",
"README_cn.md",
"LICENSE"
],
"author": "gamejoye",
"license": "MIT",
"keywords": [
"storage",
"localStorage",
"indexedDB",
"offline storage",
"browser storage"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"lint-fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix --ignore-pattern \"dist\"",
"dev": "vite",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"coverage": "vitest run --coverage",
"build": "rollup -c --bundleConfigAsCjs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitest/coverage-v8": "3.0.6",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"fake-indexeddb": "^6.0.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.0",
"rollup": "^4.12.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitepress": "^1.6.3",
"vitest": "^3.0.6"
}
}