-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.8 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.8 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
{
"name": "create-polyglot",
"version": "1.20.1",
"description": "Scaffold polyglot microservice monorepos with built-in templates for Node, Python, Go, and more.",
"main": "bin/index.js",
"scripts": {
"start": "echo 'running start instead of dev'",
"create-polyglot": "node ./bin/index.js",
"test": "vitest run && npm run test:cleanup",
"test:cleanup": "rm -rf test-workspace",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"prepublishOnly": "npm test",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"bin": {
"create-polyglot": "bin/index.js"
},
"keywords": [
"monorepo",
"microservices",
"polyglot",
"scaffold",
"cli",
"generator",
"turborepo",
"nx",
"docker"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kaifcoder/create-polyglot.git"
},
"homepage": "https://github.com/kaifcoder/create-polyglot#readme",
"bugs": {
"url": "https://github.com/kaifcoder/create-polyglot/issues"
},
"files": [
"bin",
"templates",
"scripts"
],
"author": "kaifcoder <kaifmohd2014@gmail.com>",
"license": "MIT",
"type": "module",
"dependencies": {
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"commander": "^14.0.1",
"degit": "^2.8.4",
"execa": "^9.6.0",
"fs-extra": "^11.3.2",
"hookable": "^5.5.3",
"lodash-es": "^4.17.21",
"pidusage": "^4.0.1",
"prompts": "^2.4.2",
"systeminformation": "^5.27.11",
"ws": "^8.16.0"
},
"devDependencies": {
"vitepress": "^1.3.3",
"vitest": "^1.6.1"
}
}