aboutsummaryrefslogtreecommitdiff
path: root/lib/admin/package.json
blob: 8151cebda20738437074aa3fec26d5db7fb11647 (plain)
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
{
  "name": "@vnuge/cmnext-admin",
  "version": "0.1.2",
  "author": "Vaughn Nugent",
  "description": "A browser client library for CMNext admin UI development",
  "copyright": "Copyright \u00A9 2024 Vaughn Nugent",
  "repository": "https://github.com/VnUgE/CMNext/tree/master/lib/admin",
  "output_dir": "bin",
  "type": "module",

  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typings": "./dist/index.d.ts",

  "scripts": {
    "lint": "eslint --ext .js,.ts --ignore-path ../../.gitignore src",
    "build": "tsc",
    "clean": "if exist dist ( rd /S /Q lib)"
  },

  "license": "agpl3",

  "devDependencies": {
    "@types/lodash-es": "^4.14.194",
    "@babel/types":"^7.x",
    "@typescript-eslint/eslint-plugin": "^7.0.x"
  },

  "peerDependencies": {
    "@vueuse/core": "^10.x",
    "lodash-es": "^4.x",
    "vue": "^3.x",
    "axios": "^1.x",
    "jose": "^5.1.x",
    "universal-cookie": "^7.x",
   "@vnuge/vnlib.browser": "https://www.vaughnnugent.com/public/resources/software/builds/Plugins.Essentials/eb9752ab262522271ccaf1ff127658b7202289a4/@vnuge-vnlib.browser/release.tgz"
  },

  "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
    }
  }
}