This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"scripts": {
"test": "jest",
"dev": "esmo example/main.ts",
"dev:deno": "deno run --unstable -A example/deno/main.ts",
"build": "rimraf dist && tsup src/mod.ts --dts --format cjs,esm",
"package-check": "npx @skypack/package-check"
},
"dependencies": {
"ky": "^1.0.0",
"ky-universal": "^0.12.0"
},
"devDependencies": {
"@hikae/gpt": "file:.",
"@types/jest": "29.2.0",
"dotenv": "16.0.3",
"esbuild": "0.15.12",
"esbuild-jest": "0.5.0",
"eslint": "8.26.0",
"esmo": "0.16.3",
"jest": "29.2.2",
"rimraf": "5.0.0",
"tsup": "6.3.0",
"typescript": "5.0.2"
},
"name": "@hikae/gpt",
"version": "0.1.0",
"description": "A framework to build OpenAPI apps using nodejs",
"keywords": [
"gpt3"
],
"main": "dist/mod.js",
"module": "dist/mod.mjs",
"types": "dist/mod.d.ts",
"exports": {
"require": "./dist/mod.js",
"import": "./dist/mod.mjs",
"default": "./dist/mod.mjs"
},
"files": [
"dist"
],
"size-limit": [
{
"path": "dist/index.js",
"limit": "4500 ms"
},
{
"path": "dist/index.mjs",
"limit": "4500 ms"
}
],
"author": "HikaruEgashira",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/HikaruEgashira/gpt.git"
},
"bugs": {
"url": "https://github.com/HikaruEgashira/gpt/issues"
},
"homepage": "https://github.com/HikaruEgashira/gpt#readme"
}