-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.44 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
{
"name": "@em3odme/agentic",
"version": "0.1.1",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run format && npm run lint && npm run test && npm run build"
},
"pre-commit": [
"lint"
],
"author": "Roman Jankowski",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Em3ODMe/agentic.git"
},
"homepage": "https://github.com/Em3ODMe/agentic#readme",
"bugs": {
"url": "https://github.com/Em3ODMe/agentic/issues"
},
"engines": {
"node": ">=18.0.0"
},
"description": "Package Template",
"devDependencies": {
"@cloudflare/workers-types": "^4.20260124.0",
"@eslint/js": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.0.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"files": [
"dist"
],
"keywords": [
"agent",
"llm",
"ai",
"typescript",
"nodejs"
]
}