-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.57 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@effect-x/lalph",
"type": "module",
"version": "0.3.123",
"publishConfig": {
"access": "public"
},
"bin": {
"lalph": "dist/cli.mjs"
},
"scripts": {
"prepare": "husky && effect-tsgo patch",
"check": "concurrently \"pnpm tsgo --noEmit\" \"pnpm oxlint -c .oxlintrc.json\" \"pnpm build\"",
"build": "tsdown",
"prepublishOnly": "pnpm build"
},
"files": [
"dist",
"src"
],
"license": "MIT",
"author": "Tim Smart <hello@timsmart.co>",
"contributors": [
"xesrevinu"
],
"repository": {
"type": "git",
"url": "https://github.com/effect-anything/lalph"
},
"homepage": "https://github.com/effect-anything/lalph",
"bugs": {
"url": "https://github.com/effect-anything/lalph/issues"
},
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48",
"dependencies": {
"better-sqlite3": "^12.8.0",
"tree-sitter": "^0.21.0",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-typescript": "^0.23.2"
},
"optionalDependencies": {
"@sqliteai/sqlite-vector-darwin-arm64": "0.9.93",
"@sqliteai/sqlite-vector-darwin-x86_64": "0.9.93",
"@sqliteai/sqlite-vector-linux-arm64": "0.9.93",
"@sqliteai/sqlite-vector-linux-arm64-musl": "0.9.93",
"@sqliteai/sqlite-vector-linux-x86_64": "0.9.93",
"@sqliteai/sqlite-vector-linux-x86_64-musl": "0.9.93",
"@sqliteai/sqlite-vector-win32-x86_64": "0.9.93"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@effect/tsgo": "0.0.16",
"@effect/ai-anthropic": "4.0.0-beta.43",
"@effect/ai-openai": "4.0.0-beta.43",
"@effect/ai-openai-compat": "4.0.0-beta.43",
"@effect/platform-node": "4.0.0-beta.43",
"@linear/sdk": "^80.0.0",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"@octokit/types": "^16.0.0",
"@typescript/native-preview": "7.0.0-dev.20260329.1",
"clanka": "^0.2.49",
"concurrently": "^9.2.1",
"effect": "4.0.0-beta.43",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"octokit": "^5.0.5",
"oxlint": "^1.57.0",
"prettier": "^3.8.1",
"tsdown": "^0.21.7",
"yaml": "^2.8.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"oxlint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@vscode/ripgrep",
"better-sqlite3",
"tree-sitter",
"tree-sitter-javascript",
"tree-sitter-typescript"
]
}
}