-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "intelli-buddy",
"version": "1.0.0-alpha.4",
"description": "Your Smart Coding Friend",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build:clear": "rm -rf dist",
"build": "npm run build:clear && tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"postbuild": "tsc-alias -v --dir dist/cjs -p tsconfig.cjs.json && tsc-alias -v --dir dist/esm -p tsconfig.esm.json && tsc-alias -v --dir dist/types -p tsconfig.types.json",
"test": "npm run build && jest",
"lint": "eslint -- ./src",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/misbiheyv/intelli-buddy"
},
"author": {
"name": "misbiheyv",
"email": "mishagorkovenko1103@gmail.com"
},
"bugs": "https://github.com/misbiheyv/intelli-buddy/issues",
"license": "MIT",
"peerDependencies": {
"tslib": "2.6.1"
},
"dependencies": {
"handlebars": "4.7.6",
"handlebars-async-helpers": "1.0.6"
},
"devDependencies": {
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"jest": "^29.6.4",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6"
},
"files": [
"dist",
"index.d.ts",
"ai-config.schema.json"
]
}