-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.68 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "astack",
"version": "0.1.0",
"description": "A composable framework for building AI applications.",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "pnpm run lint:check",
"lint:check": "eslint \"{packages,examples}/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"{packages,examples}/**/*.{ts,tsx}\" --fix",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"pre:beta": "changeset pre enter beta",
"pre:exit": "changeset pre exit",
"publish:beta": "pnpm build && pnpm -r publish --tag beta --access public",
"publish:latest": "pnpm build && pnpm -r publish --access public"
},
"keywords": [
"ai-framework",
"ai-agent",
"ai"
],
"author": "xiaoa",
"license": "MIT",
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"esbuild": "^0.25.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"prettier": "^3.1.1",
"sharp": "^0.34.5",
"turbo": "^2.5.3",
"typescript": "^5.8.3"
}
}