-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.03 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.03 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
{
"name": "@sidekick-coder/zenith-kit",
"version": "0.0.10",
"license": "MIT",
"description": "A collection of utilities and tools for building language servers and related applications.",
"keywords": [],
"author": "Henrique Oliveira <henriqueoliwork@gmail.com>",
"homepage": "https://github.com/sidekick-coder/language-kit",
"repository": {
"type": "git",
"url": "git+https://github.com/sidekick-coder/language-kit.git"
},
"publishConfig": {
"access": "public"
},
"imports": {
"#client/*": "./src/client/*",
"#server/*": "./src/server/*",
"#shared/*": "./src/shared/*"
},
"exports": {
"./shared": {
"import": "./dist/shared/index.mjs",
"require": "./dist/shared/index.js",
"types": "./dist/shared/index.d.mts"
},
"./server": {
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"types": "./dist/server/index.d.mts"
}
},
"scripts": {
"generate:indexes": "node indexes.js",
"build": "tsdown",
"watch": "tsdown --watch",
"release": "node artisan.js release"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@eslint/json": "^0.14.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.6.0",
"@types/qs": "^6.15.0",
"@vue/tsconfig": "^0.9.1",
"commander": "^14.0.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.5.0",
"jiti": "^2.6.1",
"tsdown": "^0.21.9",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
},
"dependencies": {
"better-sqlite3": "^12.9.0",
"date-fns": "^4.1.0",
"fast-glob": "^3.3.3",
"kysely": "^0.28.16",
"lodash-es": "^4.18.1",
"mysql2": "^3.22.3",
"pg": "^8.20.0",
"qs": "^6.15.1",
"valibot": "^1.3.1"
}
}