forked from nuxt-community/universal-storage-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "@nuxtjs/universal-storage",
"version": "0.5.9",
"description": "Universal Storage Utilities for Nuxt",
"repository": "nuxt-community/universal-storage-module",
"license": "MIT",
"main": "dist/module.js",
"types": "dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "siroc build && mkdist --src src/runtime --dist dist/runtime",
"dev": "nuxt test/fixture",
"lint": "eslint --ext .vue,.ts",
"release": "yarn test && yarn build && standard-version && git push --follow-tags && npm publish",
"test": "npm run lint && jest"
},
"dependencies": {
"cookie": "^0.5.0",
"defu": "^6.1.1",
"dotprop": "^1.2.1",
"upath": "^2.0.1",
"uri-js": "^4.4.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@nuxt/test-utils": "latest",
"@nuxt/types": "latest",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/cookie": "latest",
"codecov": "latest",
"eslint": "latest",
"jest": "latest",
"jsdom": "latest",
"mkdist": "latest",
"nuxt-edge": "latest",
"siroc": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}