-
Notifications
You must be signed in to change notification settings - Fork 637
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.65 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
{
"name": "@builder.io/mitosis-cli",
"version": "0.11.6",
"description": "mitosis CLI",
"types": "build/types/types.d.ts",
"bin": {
"mitosis": "bin/mitosis"
},
"scripts": {
"format": "prettier --loglevel warn --write \"**/*.{js,ts,tsx,json}\"",
"clean-build": "yarn compile --clean",
"compile": "tsc --build --pretty tsconfig.build.json",
"tsc-alias": "tsc-alias -p tsconfig.build.json --verbose",
"start": "concurrently --kill-others \"tsc --watch\" \"yarn tsc-alias --watch\"",
"build": "yarn format && yarn clean-build && yarn compile && yarn tsc-alias",
"fix-core-version": "./scripts/fix-core-version.sh",
"test:watch": "vitest",
"test:watch:update": "yarn test:watch --update",
"test": "yarn test:watch run",
"test:update": "yarn test --update"
},
"files": [
"dist",
"bin"
],
"license": "MIT",
"dependencies": {
"@builder.io/mitosis": "workspace:*",
"cosmiconfig": "9.0.0",
"debug": "^4.3.4",
"dedent": "^0.7.0",
"esbuild": "^0.12.16",
"fast-glob": "^3.2.11",
"fp-ts": "^2.12.2",
"fs-extra": "^9.1.0",
"gluegun": "latest",
"lodash": "^4.17.21",
"prettier": "^2.6.1",
"ts-morph": "^19.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.180",
"@types/node": "^12.7.11",
"concurrently": "^8.2.2",
"ts-node": "^8.4.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.2",
"vite": "^3.2.2",
"vitest": "^0.34.6"
},
"repository": {
"type": "git",
"url": "https://github.com/BuilderIO/mitosis"
},
"homepage": "https://github.com/BuilderIO/mitosis"
}