forked from team-opensource-plus/dummy-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.44 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
61
62
{
"name": "dummy-generator",
"version": "1.0.3",
"description": "create dummy data using GPT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"clean": "rm -rf dist",
"build": "npx tsc",
"dev": "npx tsc --watch",
"clean:windows": "rmdir /s /q dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/team-opensource-plus/dummy-generator.git"
},
"bin": {
"dummy": "dist/bin/dummy.js"
},
"keywords": [
"dummy",
"create",
"data",
"gpt",
"generator",
"auto"
],
"author": "team-opensource-plus",
"license": "MIT",
"bugs": {
"url": "https://github.com/team-opensource-plus/dummy-generator/issues"
},
"homepage": "https://github.com/team-opensource-plus/dummy-generator#readme",
"dependencies": {
"@types/node": "^20.4.8",
"ansi-colors": "^4.1.3",
"axios": "^1.4.0",
"cli-progress": "^3.12.0",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"figlet": "^1.6.0",
"format": "^0.2.2",
"jsonfile": "^6.1.0",
"openai": "^3.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/jsonfile": "^6.1.1",
"@types/node": "^20.4.8",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
}
}