mirror of
https://github.com/teableio/teable.git
synced 2026-01-09 07:44:56 +08:00
* chore: update tracing details * feat: add attachemnt ro * feat: upgrade to zod 4 and ai-sdk 5 * chore: openapi -> meta * feat: ai-sdk 6 * chore: standard resource type * feat: grid view state subscriber * feat: pick upgrade node to 22 * fix: remove swagger to makesure backend start * fix: remove swagger to makesure backend start * chore: fix typecheck * chore: clean ui effect * chore: i18n for tools * fix: card ui * chore: update ai sdk provider * fix: should not delete the last view in table * feat: better zod error * chore: clean base card * fix: restore into base logic * chore: i18n for tools * chore: i18n for tools * fix: swagger is back * fix: pnpm lock * fix: unit test * fix: remove token * fix: typecheck * feat: proxy setting * chore: update i18n for chat * chore: tools i18n * chore: upgrade ai sdk * chore: i18n for ai gateway * chore: rename app generation to app builder * chore: remove deprecated version * feat: adjust feature limitations * chore: tools i18n * fix: lint issue * fix: api tag * chore: zod i18n * chore: add credit limit exceeded error handling --------- Co-authored-by: SkyHuang <sky.huang.fe@gmail.com>
79 lines
2.3 KiB
JSON
79 lines
2.3 KiB
JSON
{
|
|
"name": "@teable/core",
|
|
"version": "1.10.0",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/teableio/teable",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/teableio/teable",
|
|
"directory": "packages/core"
|
|
},
|
|
"author": {
|
|
"name": "tea artist",
|
|
"url": "https://github.com/tea-artist"
|
|
},
|
|
"sideEffects": false,
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --project ./tsconfig.build.json",
|
|
"dev": "tsc --watch",
|
|
"clean": "rimraf ./dist ./coverage ./tsconfig.tsbuildinfo ./tsconfig.build.tsbuildinfo ./.eslintcache",
|
|
"lint": "eslint . --ext .ts,.js,.mjs,.cjs,.mts,.cts --cache --cache-location ../../.cache/eslint/core.eslintcache",
|
|
"antlr4ts": "antlr4ts -visitor -no-listener src/formula/parser/*.g4",
|
|
"antlr4ts-tql": "antlr4ts -visitor -no-listener src/query/parser/*.g4",
|
|
"typecheck": "tsc --project ./tsconfig.json --noEmit",
|
|
"check-dist": "es-check -v",
|
|
"check-size": "size-limit",
|
|
"test": "vitest run test-unit",
|
|
"test:watch": "vitest --watch",
|
|
"test-unit": "vitest run --silent",
|
|
"test-unit-cover": "pnpm test-unit --coverage",
|
|
"fix-all-files": "eslint . --ext .ts,.js,.mjs,.cjs,.mts,.cts --fix"
|
|
},
|
|
"dependencies": {
|
|
"@asteasolutions/zod-to-openapi": "8.1.0",
|
|
"@httpx/dsn-parser": "1.8.4",
|
|
"@types/color": "3.0.6",
|
|
"@types/papaparse": "5.3.14",
|
|
"antlr4ts": "0.5.0-alpha.4",
|
|
"axios": "1.7.7",
|
|
"class-transformer": "0.5.1",
|
|
"color": "4.2.3",
|
|
"date-fns-tz": "3.2.0",
|
|
"dayjs": "1.11.10",
|
|
"lodash": "4.17.21",
|
|
"nanoid": "3.3.7",
|
|
"papaparse": "5.4.1",
|
|
"reflect-metadata": "0.2.1",
|
|
"ts-pattern": "5.0.8",
|
|
"zod": "4.1.8",
|
|
"zod-validation-error": "4.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@size-limit/file": "11.1.2",
|
|
"@teable/eslint-config-bases": "workspace:^",
|
|
"@types/lodash": "4.17.0",
|
|
"@types/node": "22.18.0",
|
|
"@vitest/coverage-v8": "2.1.5",
|
|
"antlr4ts-cli": "0.5.0-alpha.4",
|
|
"cross-env": "7.0.3",
|
|
"es-check": "7.1.1",
|
|
"eslint": "8.57.0",
|
|
"get-tsconfig": "4.7.3",
|
|
"prettier": "3.2.5",
|
|
"rimraf": "5.0.5",
|
|
"size-limit": "11.1.2",
|
|
"typescript": "5.4.3",
|
|
"vite-tsconfig-paths": "4.3.2",
|
|
"vitest": "2.1.5"
|
|
}
|
|
}
|