-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "chatgpt-plugin-ts",
"private": true,
"description": "Examples and resources for creating ChatGPT plugins in TypeScript.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"repository": "transitive-bullshit/chatgpt-plugin-ts",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=14"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "run-s build:*",
"build:tsup": "lerna run build --no-private",
"build:tsc": "tsc --build",
"deploy": "lerna run deploy",
"clean": "del packages/*/build",
"prebuild": "run-s clean",
"prepare": "husky install",
"pre-commit": "lint-staged",
"pretest": "run-s build",
"test": "run-p test:*",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230404.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^18.15.13",
"del-cli": "^5.0.0",
"husky": "^8.0.3",
"lerna": "^6.6.1",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"typescript": "^5.0.4",
"wrangler": "^2.16.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"keywords": [
"chatgpt",
"plugin",
"ai",
"well-known",
"openai",
"openapi",
"cloudflare",
"cf",
"worker"
]
}