-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.ts
43 lines (32 loc) · 1.02 KB
/
.projenrc.ts
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
import { javascript, typescript } from "projen";
import { NpmAccess } from "projen/lib/javascript";
const project = new typescript.TypeScriptProject({
name: "@wisegpt/gpt-conversation-prompt",
packageName: "@wisegpt/gpt-conversation-prompt",
npmAccess: NpmAccess.PUBLIC,
description:
"Types and utility functions to easily generate OpenAI GPT prompts for chatting with the AI.",
keywords: ["openai", "gpt", "conversation", "chat"],
workflowNodeVersion: "18.x",
license: "Unlicense",
defaultReleaseBranch: "main",
github: true,
release: true,
releaseToNpm: true,
packageManager: javascript.NodePackageManager.NPM,
tsconfig: { compilerOptions: { skipLibCheck: true } },
tsconfigDev: { compilerOptions: { skipLibCheck: true } },
prettier: true,
projenrcTs: true,
repository: "https://github.com/wisegpt/gpt-conversation-prompt.git",
peerDeps: ["openai"],
});
project.npmignore?.exclude(
"/lib/internal/**",
".DS_Store",
".prettier*",
"*.iml",
".projenrc.ts",
".git*"
);
project.synth();