-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.22 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
{
"name": "responsive-storage",
"version": "2.2.0",
"description": "Responsive local storage, supports vue2 and vue3",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"dev:2": "cd playgrounds/vue2/ && pnpm dev",
"dev:3": "cd playgrounds/vue3/ && pnpm dev",
"lint": "prettier --write \"src/*.ts\"",
"pub": "pub"
},
"keywords": [
"Vue2",
"Vue3",
"storage"
],
"author": "xiaoxian521",
"license": "MIT",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/xiaoxian521/responsive-storage"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/xiaoxian521/responsive-storage/issues"
},
"homepage": "https://github.com/xiaoxian521/responsive-storage/tree/main/#readme",
"devDependencies": {
"@pureadmin/release": "^1.0.0",
"@types/node": "^18.0.0",
"prettier": "^2.7.1",
"tsup": "^6.1.2",
"typescript": "^4.7.4",
"vue": "^3.2.37"
}
}