-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "chat-prompts",
"version": "1.0.0",
"author": {
"name": "KudoAI & contributors",
"email": "[email protected]",
"url": "https://www.kudoai.com"
},
"homepage": "https://github.com/KudoAI/chat-prompts",
"license": "CC0 1.0",
"funding": {
"type": "github",
"url": "http://github.com/sponsors/KudoAI"
},
"main": "personas.json",
"scripts": {
"prepare": "husky",
"lint": "eslint . --cache",
"lint:all": "eslint .",
"lint:fix": "eslint . --fix --cache",
"lint:fix-all": "eslint . --fix",
"minify": "node ./utils/json-minifier.js --input=./personas.json --output=./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KudoAI/chat-prompts.git"
},
"bugs": {
"url": "https://github.com/KudoAI/chat-prompts/issues"
},
"devDependencies": {
"@eslint/json": "^0.10.0",
"@eslint/markdown": "^6.2.2",
"@stylistic/eslint-plugin-js": "^3.0.1",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-yml": "^1.16.0",
"husky": "^9.1.7",
"minimist": "^1.2.8"
}
}