-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.51 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.51 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
{
"name": "@kitops/kitops-ts",
"version": "0.1.0",
"description": "TypeScript library for KitOps CLI",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepare": "husky"
},
"keywords": [
"kitops",
"modelkit",
"ml",
"ai",
"packaging",
"typescript"
],
"author": "Jozu",
"license": "Apache-2.0",
"homepage": "https://kitops.org",
"repository": {
"type": "git",
"url": "https://github.com/kitops-ml/kitops-ts.git"
},
"bugs": {
"url": "https://github.com/kitops-ml/kitops-ts/issues"
},
"devDependencies": {
"@eslint/config-helpers": "^0.6.0",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.0.8",
"@vitest/ui": "^4.0.17",
"eslint": "^10.3.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.2",
"vitest": "^4.0.17"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=23.0.0"
},
"lint-staged": {
"src/**/*.ts": "eslint --fix"
},
"dependencies": {
"yaml": "^2.8.2"
}
}