aboutsummaryrefslogtreecommitdiff
path: root/lib/client/package.json
blob: 54e71b2f2757cc16fcce8f9cf23710aa49e4cd64 (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
{
  "name": "@vnuge/cmnext-client",
  "version": "0.1.2",
  "type": "module",
  "copyright": "Copyright \u00A9 2024 Vaughn Nugent",
  "author": "Vaughn Nugent",
  "description": "A browser client library to access your CMNext content from its http static storage",
  "repository": "https://github.com/VnUgE/CMNext/tree/master/lib/client",
  "output_dir": "bin",

  "license": "agpl3",

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

  "devDependencies": {
    "@babel/types": "^7.x",
    "@types/lodash-es": "^4.14.194",
    "@typescript-eslint/eslint-plugin": "^6.4.x",
    "eslint": "^8.39.0"
  },
  "peerDependencies": {
    "lodash-es": "^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
    }
  }
}