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", "parser": "@typescript-eslint/parser",
"extends": [ "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"eslint:recommended", "plugins": ["@typescript-eslint"],
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"env": { "env": {
"browser": false, "browser": false,
"es6": true "es6": true
@ -26,7 +21,8 @@
], ],
"no-useless-catch": "warn", "no-useless-catch": "warn",
"@typescript-eslint/no-extra-semi": "off", "@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": {}, "settings": {},
"globals": { "globals": {

Wyświetl plik

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