-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.51 KB
/
package.json
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
92
{
"name": "hypercode",
"version": "2.2.4",
"description": "Hypercode is a npm package for Node.js that allows you to consume the Hyper APIs easily in your JavaScript or TypeScript projects with complete type-safety",
"author": {
"name": "Hyper AI",
"email": "[email protected]",
"url": "https://gethyper.ai"
},
"repository": {
"type": "git",
"url": "https://github.com/gethyperai/hypercode.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/gethyperai/hypercode/issues"
},
"homepage": "https://github.com/gethyperai/hypercode#readme",
"readme": "https://github.com/gethyperai/hypercode#readme",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "husky install",
"watch": "tsc --watch --noEmit",
"test": "jest ./src",
"ts-types": " tsc --emitDeclarationOnly --outDir dist",
"build": "rm -rf dist && tsup && npm run ts-types",
"prepublish": "npm run build",
"release": "semantic-release --branches main",
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**",
"pretty": "prettier --check .",
"pretty:fix": "prettier --write .",
"lint-staged": "lint-staged",
"commitlint": "commitlint --edit",
"commit": "cz"
},
"lint-staged": {
"src/**": [
"npm run pretty:fix",
"npm run lint:fix",
"npm run pretty",
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^18.4.0",
"@commitlint/config-conventional": "^18.4.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.7",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"semantic-release": "^21.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"keywords": [
"ai",
"llm",
"large language model",
"developer",
"tool",
"convenience"
]
}