aboutsummaryrefslogtreecommitdiff
path: root/lib/client/package.json
blob: 9379a7e9e6bf0fc7eb7a6ac864626aad4350f1ee (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
{
  "name": "@vnuge/cmnext-client",
  "version": "0.1.0",
  "author": "Vaughn Nugent",
  "description": "A browser client library to access your CMNext content from its http static storage",
  "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": {
    "@babel/types": "^7.x",
    "@types/lodash": "^4.14.194",
    "@typescript-eslint/eslint-plugin": "^5.59.1",
    "eslint": "^8.39.0"
  },
  "peerDependencies": {
    "lodash": "^4.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
    }
  }
}