-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
124 lines (124 loc) · 3.75 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@builder.io/mitosis",
"description": "Write components once, run everywhere. Compiles to Vue, React, Solid, and Liquid. Import code from Figma and Builder.io",
"keywords": [
"jsx",
"compiler",
"no-code",
"builder.io",
"figma",
"react",
"vue",
"solid",
"liquid",
"shopify",
"builder",
"wysiwyg",
"drag-drop",
"mitosis",
"angular"
],
"author": {
"name": "Builder.io",
"url": "https://www.builder.io"
},
"version": "0.2.2",
"homepage": "https://github.com/BuilderIO/mitosis",
"main": "./dist/src/index.js",
"exports": {
".": "./dist/src/index.js",
"./lib/*": "./dist/src/*",
"./jsx-runtime": "./jsx-runtime.d.ts",
"./types": "./dist/src/index.d.ts"
},
"types": "./dist/src/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BuilderIO/mitosis"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"snapupdate": "vitest --update",
"coverage": "vitest run --coverage",
"tsc": "tsc --build tsconfig.build.json",
"tsc-alias": "tsc-alias -p tsconfig.build.json",
"rmrf": "rimraf ./dist",
"build": "yarn rmrf && yarn tsc && yarn tsc-alias",
"remove-stableVersion": "./scripts/remove-stableVersion.sh",
"release:dev": "yarn build && yarn run remove-stableVersion && yarn version prerelease && yarn npm publish --tag dev",
"release:patch": "yarn build && yarn run remove-stableVersion && yarn version patch && yarn npm publish",
"mitosis-save-artifacts": "node -r esbuild-register ../../scripts/mitosis-save-artifacts.ts",
"start": "yarn rmrf && concurrently --kill-others \"yarn tsc --watch\" \"yarn tsc-alias --watch\"",
"script": "ts-node -O '{\"module\": \"commonjs\"}'"
},
"files": [
"dist",
"jsx-runtime.d.ts",
"!**/*.tsbuildinfo"
],
"dependencies": {
"@angular/compiler": "^11.2.11",
"@babel/core": "7.14.5",
"@babel/generator": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-syntax-decorators": "^7.12.1",
"@babel/plugin-syntax-typescript": "^7.20.0",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@builder.io/sdk": "^2.1.1",
"astring": "^1.8.3",
"csstype": "^3.0.4",
"fp-ts": "^2.11.10",
"hash-sum": "^2.0.0",
"json5": "^2.1.3",
"lodash": "^4.17.20",
"object-hash": "^2.0.3",
"prettier": ">=2.0.0 <3.0.0",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-svelte": "^2.10.0",
"svelte": "^3.30.0",
"svelte-preprocess": "^5.0.3",
"traverse": "^0.6.6",
"ts-morph": "^19.0.0",
"typescript": "^5.3.2",
"vue": "~2.6"
},
"devDependencies": {
"@babel/preset-env": "^7.6.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-virtual": "^2.1.0",
"@tootallnate/once": "^1.1.2",
"@types/babel__core": "7.1.14",
"@types/dedent": "^0.7.0",
"@types/estree": "^1.0.2",
"@types/fs-extra-promise": "^1.0.10",
"@types/hash-sum": "^1.0.0",
"@types/json5": "0.0.30",
"@types/lodash": "^4.14.165",
"@types/node": "^15.12.0",
"@types/object-hash": "^1.3.4",
"@types/prettier": "^2.1.5",
"@types/rollup__plugin-virtual": "^2.0.1",
"@types/traverse": "^0.6.32",
"concurrently": "^8.2.2",
"fs-extra-promise": "^1.0.1",
"less": "^4.1.3",
"lru-cache": "^6.0.0",
"postcss": "^8.4.19",
"pug": "^3.0.2",
"rimraf": "^5.0.5",
"rollup": "^2.70.1",
"strip-ansi": "^6.0.1",
"stylus": "^0.59.0",
"sugarss": "^4.0.1",
"ts-node": "^9.1.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.2",
"universalify": "^2.0.0",
"vite": "^4.5.0",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.34.6"
}
}