-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "@workleap/create-project",
"author": "Workleap",
"version": "0.4.1",
"description": "Foundry-CLI Workleap project starter kit",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gsoft-inc/wl-foundry-cli.git",
"directory": "packages/create-project"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"bin": "./dist/bin.js",
"scripts": {
"dev": "pnpm run build && pnpm run dev:link && pnpm run dev:tsup",
"dev:link": "pnpm link --global",
"dev:tsup": "tsup --config tsup.dev.ts",
"build": "tsup --config tsup.build.ts"
},
"dependencies": {
"@clack/core": "0.3.2",
"@clack/prompts": "0.6.3",
"picocolors": "1.0.0"
},
"devDependencies": {
"@types/node": "18.16.19",
"@workleap/tsup-configs": "2.0.0",
"tsup": "7.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}