forked from unjs/unstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.89 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
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": "unstorage",
"version": "0.3.3",
"description": "Universal Storage Layer",
"repository": "unjs/unstorage",
"license": "MIT",
"sideEffects": false,
"exports": {
"./drivers/*": {
"import": "./drivers/*.mjs",
"require": "./drivers/*.cjs"
},
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./server": {
"import": "./server.mjs",
"require": "./server.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"drivers",
"server*"
],
"scripts": {
"build": "unbuild",
"dev": "jest --watch",
"demo": "vite demo",
"lint": "eslint --ext .ts .",
"prepack": "yarn build",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint",
"doctoc": "doctoc README.md --notitle --maxlevel 3",
"unstorage": "yarn jiti src/cli"
},
"dependencies": {
"anymatch": "^3.1.1",
"chokidar": "^3.5.2",
"destr": "^1.1.0",
"h3": "^0.3.3",
"ioredis": "^4.27.9",
"listhen": "^0.2.4",
"mri": "^1.1.6",
"ohmyfetch": "^0.4.5",
"ufo": "^0.7.9",
"ws": "^8.2.1"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "latest",
"@types/ioredis": "latest",
"@types/jest": "latest",
"@types/jsdom": "latest",
"@types/mri": "latest",
"@types/node": "latest",
"@types/ws": "latest",
"@vitejs/plugin-vue": "latest",
"@vue/compiler-sfc": "latest",
"doctoc": "latest",
"eslint": "latest",
"jest": "latest",
"jiti": "latest",
"jsdom": "latest",
"mkdist": "latest",
"monaco-editor": "latest",
"standard-version": "latest",
"ts-jest": "latest",
"types-cloudflare-worker": "^1.2.0",
"typescript": "latest",
"unbuild": "latest",
"vite": "latest",
"vue": "^3.0.5"
}
}