-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.87 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
{
"name": "@poool/vue-access",
"version": "1.0.0",
"description": "Plugin to easily add Poool access to your Vue app ✨",
"repository": "https://github.com/p3ol/vue-access.git",
"author": "Nicolas Auger <nicolas@poool.fr",
"license": "MIT",
"main": "dist/poool-vue-access.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"engines": {
"node": "18 || 20 || 22"
},
"workspaces": [
"examples/*"
],
"devDependencies": {
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-swc": "0.4.0",
"@rollup/plugin-terser": "0.4.4",
"@swc/core": "1.7.40",
"@types/node": "22.7.9",
"@vitejs/plugin-vue": "5.1.4",
"@vue/eslint-config-typescript": "13.0.0",
"@vue/tsconfig": "0.5.1",
"commit-and-tag-version": "12.5.0",
"eslint": "8.57.1",
"eslint-plugin-vue": "9.29.1",
"nuxt": "3.13.2",
"rollup": "4.24.3",
"typescript": "5.6.3",
"vite": "5.4.11",
"vue": "3.5.13",
"vue-router": "4.4.5",
"vue-tsc": "2.1.10"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"scripts": {
"type-check": "vue-tsc --build --force",
"clean": "rm -rf ./dist || true",
"build": "yarn clean && yarn build:code && yarn build:types",
"build:code": "rollup --configPlugin @rollup/plugin-swc -c",
"build:types": "tsc --project ./tsconfig.build.json",
"prepack": "yarn build && yarn lint && yarn tsc",
"test": "NODE_ENV='test' jest",
"lint": "eslint --max-warnings=0 .",
"release": "commit-and-tag-version && git push --follow-tags",
"example:basic": "yarn workspace poool-vue-access-basic-example serve",
"example:nuxt": "yarn workspace poool-vue-access-nuxt-example serve"
},
"dependencies": {
"@junipero/core": "3.7.1",
"@types/poool-access": "5.18.0"
},
"packageManager": "yarn@4.5.0"
}