-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (74 loc) · 2.15 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
{
"name": "vue-postgrest",
"version": "0.0.0-development",
"description": "Vue.js Component providing PostgREST integration",
"bugs": {
"url": "https://github.com/technowledgy/vue-postgrest/issues"
},
"scripts": {
"build": "vite build",
"docs:build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build docs",
"docs:dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs",
"lint": "eslint --max-warnings=0 .",
"lint:watch": "nodemon -q -x 'clear && yarn -s lint'",
"test": "jest"
},
"files": [
"dist/*"
],
"dependencies": {},
"devDependencies": {
"@babel/eslint-parser": "7.26.10",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@vitejs/plugin-vue2": "2.3.3",
"@vue/eslint-config-standard": "8.0.1",
"@vue/test-utils": "1.3.6",
"@vuepress/plugin-active-header-links": "1.9.10",
"@vuepress/plugin-back-to-top": "1.9.10",
"core-js": "3.41.0",
"coveralls": "3.1.1",
"eslint": "9.22.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.16.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-vue": "9.33.0",
"flush-promises": "1.0.2",
"globals": "15.15.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-fetch-mock": "3.0.3",
"jest-watch-typeahead": "2.2.2",
"lru-cache": "5.1.1",
"nodemon": "3.1.9",
"rollup-plugin-copy": "3.5.0",
"semantic-release": "24.2.3",
"vite": "6.2.1",
"vue": "2.7.16",
"vue-server-renderer": "2.7.16",
"vue-template-compiler": "2.7.16",
"vuepress": "1.9.10"
},
"homepage": "https://github.com/technowledgy/vue-postgrest#readme",
"keywords": [
"plugin",
"postgres",
"postgrest",
"vue"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/technowledgy/vue-postgrest.git"
},
"type": "module",
"main": "dist/cjs/vue-postgrest.js",
"exports": {
".": {
"require": "./dist/cjs/vue-postgrest.js",
"default": "./dist/es/vue-postgrest.js"
}
},
"module": "dist/es/vue-postgrest.js"
}