@wix/create-new 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/bin/import.cjs +1 -0
- package/bin/index.cjs +34 -0
- package/build/index.js +3443 -0
- package/build/index.js.map +1 -0
- package/build/xdg-open +1267 -0
- package/build/yoga.wasm +0 -0
- package/package.json +43 -0
package/build/yoga.wasm
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wix/create-new",
|
|
3
|
+
"description": "General entry point for creating Wix projects",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"bin": "bin/index.cjs",
|
|
6
|
+
"devDependencies": {
|
|
7
|
+
"@commander-js/extra-typings": "^13.0.0",
|
|
8
|
+
"@wix/tsup-configs": "0.0.0"
|
|
9
|
+
},
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">= 20.11.0"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"bin",
|
|
15
|
+
"build"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"registry": "https://registry.npmjs.org/",
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "run -T tsup",
|
|
23
|
+
"build:watch": "run -T build:watch --filter='@wix/create-new'",
|
|
24
|
+
"dev:npm": "npx $INIT_CWD",
|
|
25
|
+
"dev:yarn": "yarn create @wix/create-new@portal:$INIT_CWD",
|
|
26
|
+
"test": "yarn workspace @wix/create-new-spec run test",
|
|
27
|
+
"test:watch": "yarn workspace @wix/create-new-spec run test:watch",
|
|
28
|
+
"typecheck": "run -T tsc --noEmit"
|
|
29
|
+
},
|
|
30
|
+
"type": "module",
|
|
31
|
+
"wix": {
|
|
32
|
+
"artifact": {
|
|
33
|
+
"groupId": "com.wixpress",
|
|
34
|
+
"artifactId": "wix-cli-create-new"
|
|
35
|
+
},
|
|
36
|
+
"validations": {
|
|
37
|
+
"postBuild": [
|
|
38
|
+
"typecheck"
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"falconPackageHash": "d7cf44a58107712fa694fb8b4d0a29b1cd8ebbeb8e9e342ad4502648"
|
|
43
|
+
}
|