-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.11 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "prompt-library-cli",
"version": "1.0.0",
"description": "GitHub Actions scripts and CLI for Prompt Library",
"author": "Thibault YOU",
"license": "MIT",
"main": "dist/main.js",
"bin": {
"prompt-library-cli": "./dist/main.js"
},
"scripts": {
"build": "node build.js",
"dev": "ts-node src/main.ts",
"format": "npm run lint:fix && npm run prettify",
"lint": "eslint '**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"prettify": "prettier --write '**/*.ts'",
"start": "node dist/main.js",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --passWithNoTests",
"toc": "doctoc README.md --github --notitle",
"type-check": "tsc --noEmit",
"update": "ncu -i",
"update-metadata": "prompt-library-cli prompts refresh-metadata --all --nonInteractive",
"update-views": "prompt-library-cli generate-docs",
"validate-yaml": "yamllint '**/*.yml'"
},
"keywords": [
"github-actions",
"typescript",
"prompt-library",
"ai-prompts",
"metadata-generation",
"anthropic-api",
"yaml-processing",
"automation",
"documentation-generator",
"code-quality",
"developer-tools",
"ci-cd",
"prompt-engineering",
"cli"
],
"dependencies": {
"@anthropic-ai/sdk": "0.29.1",
"@inquirer/prompts": "7.0.0",
"@nestjs/common": "11.0.12",
"@nestjs/core": "11.0.12",
"chalk": "4.1.2",
"cli-spinner": "0.2.10",
"commander": "12.1.0",
"dotenv": "16.4.5",
"fs-extra": "11.2.0",
"js-yaml": "4.1.0",
"nest-commander": "3.17.0",
"nunjucks": "3.2.4",
"openai": "4.86.2",
"ora": "5.4.1",
"reflect-metadata": "0.2.2",
"simple-git": "3.27.0",
"sqlite3": "5.1.7"
},
"devDependencies": {
"@eslint/compat": "1.2.0",
"@jest/globals": "29.7.0",
"@testing-library/jest-dom": "6.4.2",
"@types/cli-spinner": "0.2.3",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/node": "22.7.6",
"@types/node-cache": "4.2.5",
"@types/nunjucks": "3.2.6",
"@types/ora": "3.2.0",
"@types/sqlite3": "3.1.11",
"@typescript-eslint/eslint-plugin": "8.9.0",
"@typescript-eslint/parser": "8.9.0",
"doctoc": "2.2.1",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"jest": "29.7.0",
"jest-environment-node": "29.7.0",
"mock-fs": "5.2.0",
"nest-commander-testing": "^3.4.0",
"npm-check-updates": "17.1.4",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"yaml-lint": "1.7.0"
}
}