-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 KB
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
{
"name": "izteamslots",
"version": "1.7.1",
"description": "ChatGPT Team slot management — automated invite, register, OAuth login & codex token pipeline",
"bin": {
"izteamslots": "bin/izteamslots.mjs"
},
"scripts": {
"start": "bun run --cwd ui src/main.ts",
"setup": "node scripts/setup.mjs",
"postinstall": "node scripts/setup.mjs",
"typecheck:ui": "npm --prefix ui run typecheck"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/izzzzzi/izTeamSlots.git"
},
"license": "MIT",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"keywords": [
"chatgpt",
"team",
"slots",
"openai",
"codex",
"automation"
]
}