-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.2 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
{
"name": "starter-ts",
"type": "module",
"version": "0.0.0",
"description": "",
"author": "OceanPresent <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/OceanPresentChao/starter-ts",
"repository": {
"type": "git",
"url": "https://github.com/OceanPresentChao/starter-ts.git"
},
"keywords": [
"starter",
"typescript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx ./src/index.ts",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"openai": "4.25.0"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0",
"@types/node": "^20.11.5",
"eslint": "^8.56.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.1",
"zod": "^3.22.4"
}
}