aboutsummaryrefslogtreecommitdiff
path: root/lib/vnlib.browser/package.json
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-01-01 11:05:34 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-01-01 11:05:34 -0500
commit4890ffb8f4aafed897cabc368fa105a70615a2de (patch)
tree278fd9c3784328a27079d78dc635095fffe130a9 /lib/vnlib.browser/package.json
parent1a82a909c5c4d0262d69a8a543e902ff6533a4b2 (diff)
missed config/package files
Diffstat (limited to 'lib/vnlib.browser/package.json')
-rw-r--r--lib/vnlib.browser/package.json59
1 files changed, 59 insertions, 0 deletions
diff --git a/lib/vnlib.browser/package.json b/lib/vnlib.browser/package.json
new file mode 100644
index 0000000..3b43594
--- /dev/null
+++ b/lib/vnlib.browser/package.json
@@ -0,0 +1,59 @@
+{
+ "name": "@vnuge/vnlib.browser",
+ "version": "0.1.13",
+ "author": "Vaughn Nugent",
+ "description": "Client JavaScript helper library for vuejs3 web-apps for connecting with Essentials.Accounts plugin and vuejs helpers.",
+ "repository":"https://github.com/VnUgE/vnlib.browser",
+ "copyright":"Copyright \u00A9 2023 Vaughn Nugent",
+ "type": "module",
+ "main": "./dist/index.js",
+ "types": "./dist/index.d.ts",
+ "typings": "./dist/index.d.ts",
+ "output":"bin",
+ "scripts": {
+ "lint": "eslint --ext .js,.ts --ignore-path .gitignore src",
+ "build": "tsc",
+ "clean": "if exist dist ( rd /S /Q lib)"
+ },
+ "license": "MIT",
+ "devDependencies": {
+ "@babel/types": "^7.x",
+ "@types/lodash-es": "^4.14.x",
+ "@types/node": "^20.5.1",
+ "@typescript-eslint/eslint-plugin": "^6.x.x"
+ },
+
+ "peerDependencies": {
+ "@vueuse/core": "^10.x",
+ "lodash-es": "^4.x",
+ "vue": "^3.x",
+ "vue-router": "^4.x",
+ "axios": "^1.x",
+ "eslint": "^8.39.0",
+ "jose": "^5.x",
+ "universal-cookie": "^6.1.x"
+ },
+
+ "eslintConfig": {
+ "root": true,
+ "extends": [
+ "eslint:recommended",
+ "plugin:@typescript-eslint/recommended"
+ ],
+ "parser": "@typescript-eslint/parser",
+ "parserOptions": {
+ "project": []
+ },
+ "plugins": [
+ "@typescript-eslint"
+ ],
+ "rules": {},
+ "ignorePatterns": [
+ "src/**/*.test.ts",
+ "src/frontend/generated/*"
+ ],
+ "env": {
+ "browser": true
+ }
+ }
+}