-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "aidk-workspace",
"version": "0.0.1",
"private": true,
"description": "JSX framework for building AI applications",
"keywords": [
"ai",
"anthropic",
"google",
"jsx",
"llm",
"openai"
],
"homepage": "https://github.com/rlindgren/aidk#readme",
"bugs": {
"url": "https://github.com/rlindgren/aidk/issues"
},
"license": "ISC",
"author": "Ryan Lindgren",
"repository": {
"type": "git",
"url": "git+https://github.com/rlindgren/aidk.git"
},
"scripts": {
"prepare": "simple-git-hooks",
"build": "turbo build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "turbo typecheck",
"clean": "turbo clean",
"dev": "turbo dev",
"lint": "turbo lint",
"lint:all": "turbo lint && eslint .",
"format": "oxfmt --write .",
"format:check": "turbo format:check",
"changeset": "changeset",
"version-packages": "changeset version",
"publish-packages": "turbo run test build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.0.0",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@types/node": "^25.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"eslint-plugin-oxlint": "^1.36.0",
"oxfmt": "^0.21.0",
"oxlint": "^1.36.0",
"simple-git-hooks": "^2.13.1",
"turbo": "^2.7.2",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"peerDependencies": {
"zod": "^4.1.13"
},
"simple-git-hooks": {
"pre-commit": "pnpm run format:check && pnpm run lint:all",
"commit-msg": "npx --no -- commitlint --edit ${1}"
},
"packageManager": "pnpm@10.25.0"
}