old-agentic-v1^2
Travis Fischer 2023-06-01 22:47:27 -07:00
rodzic 1fbe97a21e
commit 154929d8e9
3 zmienionych plików z 7 dodań i 10 usunięć

Wyświetl plik

@ -0,0 +1 @@
build/

Wyświetl plik

@ -1,12 +1,7 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"plugins": ["@typescript-eslint"],
"env": {
"browser": false,
"es6": true
@ -26,7 +21,8 @@
],
"no-useless-catch": "warn",
"@typescript-eslint/no-extra-semi": "off",
"@typescript-eslint/no-non-null-assertion": "off"
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-explicit-any": "off"
},
"settings": {},
"globals": {

Wyświetl plik

@ -26,7 +26,7 @@
"build": "tsup",
"dev": "tsup --watch",
"clean": "del build",
"lint": "eslint --ext .{js,jsx,ts,tsx} examples src test --fix",
"lint": "eslint '**/*.ts' --fix",
"prebuild": "run-s clean",
"predev": "run-s clean",
"pretest": "run-s build",
@ -35,7 +35,7 @@
"test": "run-p test:*",
"test:unit": "ava",
"test:prettier": "prettier **/*.{js,jsx,ts,tsx} --check",
"test:eslint": "eslint --ext .{js,jsx,ts,tsx} examples src test"
"test:eslint": "eslint '**/*.ts'"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.4.3",