{
	"name": "chronology-ts",
	"version": "1.0.4",
	"description": "typescript port of chronology (gpt-3 python tool)",
	"keywords": [
		"gpt",
		"gpt-3",
		"ts",
		"gpts",
		"typescript",
		"chronology"
	],
	"author": "@spencercap (@thencc)",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/thencc/chronology-ts.git"
	},
	"bugs": {
		"url": "https://github.com/thencc/chronology-ts/issues"
	},
	"homepage": "https://github.com/thencc/chronology-ts#readme",
	"main": "dist/index.js",
	"types": "dist/index.d.ts",
	"files": [
		"/dist"
	],
	"scripts": {
		"build": "tsc",
		"test": "ts-node demo/index.ts"
	},
	"dependencies": {
		"gpts": "^1.0.6"
	},
	"devDependencies": {
		"@types/node": "^14.14.37",
		"@typescript-eslint/eslint-plugin": "^4.21.0",
		"@typescript-eslint/parser": "^4.21.0",
		"eslint": "^7.23.0",
		"typescript": "^4.2.3"
	},
	"eslintConfig": {
		"root": true,
		"env": {
			"node": true
		},
		"plugins": [
			"@typescript-eslint"
		],
		"extends": [
			"eslint:recommended",
			"plugin:@typescript-eslint/recommended"
		],
		"parserOptions": {
			"ecmaVersion": 2020
		},
		"ignorePatterns": [
			"node_modules",
			"dist"
		],
		"rules": {
			"quotes": [
				"warn",
				"single"
			],
			"@typescript-eslint/indent": [
				"warn",
				"tab"
			],
			"semi": [
				"warn",
				"always"
			]
		}
	}
}
