-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·59 lines (59 loc) · 1.61 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
{
"name": "@deepsource/nuxt-websocket",
"version": "1.0.0",
"description": "A tiny Nuxt.js module for WebSocket interactions.",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"websocket"
],
"homepage": "https://github.com/deepsourcelabs/nuxt-websocket",
"repository": "https://github.com/deepsourcelabs/nuxt-websocket",
"license": "MIT",
"exports": {
".": {
"require": "./dist/module.js",
"import": "./dist/module.mjs"
},
"./templates/*": "./dist/templates/*",
"./package.json": "./package.json"
},
"main": "./dist/module.js",
"module": "./dist/module.mjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "siroc build",
"dev": "nuxt example",
"lint": "eslint --ext .js,.ts,.vue .",
"release": "yarn build && yarn lint && yarn test && standard-version && git push --follow-tags && npm publish",
"test": "jest"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "latest",
"@babel/preset-env": "latest",
"@babel/preset-typescript": "latest",
"@nuxt/test-utils": "latest",
"@nuxt/types": "latest",
"@nuxt/typescript-build": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@nuxtjs/tailwindcss": "^4.2.1",
"@siroc/jest-preset": "latest",
"@types/jest": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"eslint": "latest",
"jest": "latest",
"jest-websocket-mock": "^2.3.0",
"nuxt-edge": "latest",
"playwright": "latest",
"siroc": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}