-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "@reactunity/create",
"version": "0.25.0",
"description": "Scaffold a ReactUnity app using npm init",
"license": "MIT",
"//type": "ESM, as of the chalk 6 / commander 15 upgrade: both dropped CommonJS. index.ts is emitted next to itself as ESM, so `bin` keeps pointing at index.js.",
"type": "module",
"main": "dist/index.js",
"bin": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ReactUnity/core.git",
"directory": "packages/create"
},
"author": {
"name": "Gokhan Kurt",
"email": "[email protected]"
},
"engines": {
"node": ">=20.11"
},
"scripts": {
"start": "tsx src/index.ts",
"build": "tsdown",
"typecheck": "tsc",
"prepare": "pnpm run build"
},
"dependencies": {
"chalk": "^6.0.0",
"commander": "^15.0.0",
"fs-extra": "^11.4.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^26.4.1",
"tsdown": "^0.22.14",
"tsx": "^4.23.13",
"typescript": "^7.0.2"
},
"bugs": {
"url": "https://github.com/ReactUnity/core/issues"
},
"homepage": "https://github.com/ReactUnity/core/tree/main/packages/create#readme",
"publishConfig": {
"access": "public"
}
}