-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.82 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.82 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
{
"name": "geed-storage",
"version": "1.1.0",
"description": "支持 `json` 的本地存储。",
"author": "onlymisaky",
"license": "ISC",
"homepage": "https://github.com/onlymisaky/GeedStorage#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/onlymisaky/GeedStorage.git"
},
"bugs": {
"url": "https://github.com/onlymisaky/GeedStorage/issues"
},
"keywords": [
"storage",
"sessionStorage",
"localStorage",
"memoryCache"
],
"exports": {
".": {
"types": "./dist/typings/index.d.ts",
"import": "./dist/geed-storage.js",
"require": "./dist/geed-storage.umd.js"
}
},
"main": "./dist/geed-storage.js",
"module": "./dist/geed-storage.js",
"typings": "dist/typings/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^7.2.0",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-angular": "^20.4.1",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
},
"devDependencies.back": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-webpack-plugin": "^2.4.1",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
}
}