forked from temporalio/sdk-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.52 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
63
{
"name": "@temporalio/create",
"version": "1.10.1",
"description": "Create a Temporal project from template",
"main": "cli.js",
"bin": "cli.js",
"type": "module",
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build --watch",
"test": "ava ./lib/**/*.test.js",
"test.watch": "ava --watch ./lib/**/*.test.js"
},
"keywords": [
"temporal",
"init",
"workflow"
],
"author": "Temporal Technologies Inc. <[email protected]>",
"license": "MIT",
"dependencies": {
"async-retry": "^1.3.3",
"chalk": "^5.3.0",
"chalk-template": "^1.1.0",
"commander": "^11.1.0",
"dedent": "^1.5.1",
"glob": "^10.3.10",
"got": "^13.0.0",
"prompts": "^2.4.2",
"tar": "^6.2.0",
"update-check": "1.5.4",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/cross-spawn": "^6.0.6",
"@types/got": "^9.6.12",
"@types/prompts": "2.4.9",
"@types/tar": "^6.1.10",
"@types/validate-npm-package-name": "^4.0.2",
"ava": "^5.3.1"
},
"bugs": {
"url": "https://github.com/temporalio/sdk-typescript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/temporalio/sdk-typescript.git",
"directory": "packages/create-project"
},
"homepage": "https://github.com/temporalio/sdk-typescript/tree/main/packages/create-project",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"cli.js",
"src",
"lib"
]
}