forked from victorybiz/vue-simple-acl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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": "vue-simple-acl",
"version": "2.0.2",
"description": "A simple unopinionated Vue plugin for managing user roles and permissions, access-control list (ACL) and role-based access control (RBAC).",
"main": "dist/vue-simple-acl.js",
"module": "dist/vue-simple-acl.mjs",
"unpkg": "dist/vue-simple-acl.iife.js",
"jsdelivr": "dist/vue-simple-acl.iife.js",
"browser": "dist/vue-simple-acl.esm-browser.js",
"typings": "types/index.d.ts",
"files": [
"dist/*",
"src/*",
"types/*"
],
"scripts": {
"dev": "vite",
"build": "NODE_ENV=production npm run build:package",
"build:vite": "vuedx-typecheck . && vite build",
"serve": "vite preview",
"build:package": "rollup --config rollup.config.js",
"lint": "eslint src --ext .ts",
"deploy": "npm publish",
"deploy:prerelease": "npm publish --tag next"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-auto-install": "^2.2.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/compiler-sfc": "^3.0.7",
"@vuedx/typecheck": "^0.7.5",
"@vuedx/typescript-plugin-vue": "^0.7.5",
"axios": "^0.27.2",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"rollup": "^2.78.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"typescript": "^4.7.4",
"vite": "^3.0.7",
"vue": "^3.2.37",
"vue-router": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorybiz/vue-simple-acl"
},
"keywords": [
"vue",
"vuejs",
"vue2",
"vue 2",
"vue3",
"vue 3",
"acl",
"rbac",
"vue-alc",
"vue alc",
"vue-simple-alc",
"vue simple alc",
"Access-Control List",
"Role Based Access Control",
"javacript",
"typescript"
],
"author": "Victory Osayi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/victorybiz/vue-simple-acl/issues"
},
"homepage": "https://github.com/victorybiz/vue-simple-acl#readme"
}