aboutsummaryrefslogtreecommitdiff
path: root/lib/client/package.json
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-07-12 01:28:23 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-07-12 01:28:23 -0400
commitf64955c69d91e578e580b409ba31ac4b3477da96 (patch)
tree16f01392ddf1abfea13d7d1ede3bfb0459fe8f0d /lib/client/package.json
Initial commit
Diffstat (limited to 'lib/client/package.json')
-rw-r--r--lib/client/package.json46
1 files changed, 46 insertions, 0 deletions
diff --git a/lib/client/package.json b/lib/client/package.json
new file mode 100644
index 0000000..9379a7e
--- /dev/null
+++ b/lib/client/package.json
@@ -0,0 +1,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
+ }
+ }
+}