-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
125 lines (125 loc) · 3.33 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "llm-playground-chain",
"type": "module",
"version": "0.1.0",
"packageManager": "pnpm@7.3.0",
"description": "",
"author": "Ishan Dutta <ishandutta2007@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ishandutta2007/llm-playground-chain#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ishandutta2007/llm-playground-chain.git"
},
"bugs": {
"url": "https://github.com/ishandutta2007/llm-playground-chain/issues"
},
"keywords": [
"typescript",
"starter",
"kit",
"package"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.17.1 <19.0.0",
"pnpm": ">=8.15.5",
"npm": ">=9.6.7 <10.0.0"
},
"scripts": {
"build": "pkg-utils build && pkg-utils --strict",
"buildmjs": "node build.mjs",
"buildold": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint . && tsc --noEmit",
"lint:fix": "eslint . --fix",
"fresh": "rimraf node_modules/ pnpm-lock.yaml && pnpm i",
"commit": "git cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepublishOnly": "pnpm run build",
"release": "npx bumpp package.json --execute 'pnpm run changelog' --all",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"buffer": "^6.0.3",
"dayjs": "^1.11.9",
"eventsource-parser": "^1.0.0",
"expiry-map": "^2.0.0",
"lodash-es": "^4.17.21",
"ofetch": "^1.0.1",
"rollup-plugin-includepaths": "^0.2.4",
"uuid": "^9.0.0",
"webextension-polyfill": "^0.10.0",
"websocket-as-promised": "^2.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"@sanity/pkg-utils": "^2.4.9",
"@sanity/semantic-release-preset": "^4.0.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^14.18.0",
"@types/uuid": "^9.0.0",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"bumpp": "^8.2.1",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-git": "^1.3.5",
"dotenv": "^16.0.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-sanity": "^6.0.0",
"esno": "^0.16.3",
"js-sha3": "^0.9.3",
"lint-staged": "^13.0.2",
"prettier": "^3.0.3",
"rimraf": "^3.0.2",
"rollup-plugin-visualizer": "^5.9.2",
"simple-git-hooks": "^2.8.0",
"socks": "^2.7.3",
"typescript": "^5.2.2",
"unbuild": "^0.7.4",
"vite": "^2.9.12",
"vitest": "^0.34.4"
},
"simple-git-hooks": {
"pre-commit": "npx --no-install lint-staged",
"commit-msg": "npx --no -- commitlint --edit $1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,json}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}