aboutsummaryrefslogtreecommitdiff
path: root/lib/admin/package.json
blob: 5dbbaa2acbb1870285ca70fb5485b1398d7df9f0 (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
{
  "name": "@vnuge/cmnext-admin",
  "version": "0.1.1",
  "author": "Vaughn Nugent",
  "description": "A browser client library for CMNext admin UI development",
  "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": "^4.14.194",
    "@babel/types":"^7.x",
    "@typescript-eslint/eslint-plugin": "^5.59.1",
    "eslint": "^8.39.0",
    "axios": "^1.x",
    "jose": "^4.13.x",
    "universal-cookie": "^4.0.4"
  },

  "peerDependencies": {
    "@vueuse/core": "^10.x",
    "@vueuse/router": "^10.x",
    "lodash": "^4.x",
    "vue": "^3.x",
    "@vnuge/vnlib.browser": "https://www.vaughnnugent.com/public/resources/software/releases/vnlib-browser/v0.1.6.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
    }
  }
}