create-expo-super-stack 0.1.6 → 0.1.7
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/dist/cli.js +0 -0
- package/package.json +48 -49
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,49 +1,48 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "create-expo-super-stack",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Opinionated MDS wrapper around create-expo-stack with rich Expo onboarding",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"create-expo-super-stack": "dist/cli.js"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"dist"
|
|
11
|
-
],
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"import": "./dist/cli.js",
|
|
15
|
-
"types": "./dist/cli.d.ts"
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"main": "./dist/cli.js",
|
|
19
|
-
"types": "./dist/cli.d.ts",
|
|
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
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "create-expo-super-stack",
|
|
3
|
+
"version": "0.1.7",
|
|
4
|
+
"description": "Opinionated MDS wrapper around create-expo-stack with rich Expo onboarding",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"create-expo-super-stack": "dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./dist/cli.js",
|
|
15
|
+
"types": "./dist/cli.d.ts"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"main": "./dist/cli.js",
|
|
19
|
+
"types": "./dist/cli.d.ts",
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@clack/prompts": "^0.11.0",
|
|
22
|
+
"@mr.dj2u/cli": "^0.1.10",
|
|
23
|
+
"@mr.dj2u/create-expo-stack": "2.21.3-mrdj.1",
|
|
24
|
+
"create-expo-stack": "^2.21.3"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@types/node": "^20.10.0",
|
|
28
|
+
"typescript": "^5.9.0"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"expo",
|
|
32
|
+
"create-expo-stack",
|
|
33
|
+
"uniwind",
|
|
34
|
+
"mds",
|
|
35
|
+
"react-native"
|
|
36
|
+
],
|
|
37
|
+
"author": "DJ",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "pnpm --filter @mr.dj2u/cli build && tsc",
|
|
41
|
+
"type-check": "pnpm --filter @mr.dj2u/cli build && tsc --noEmit",
|
|
42
|
+
"lint": "eslint src",
|
|
43
|
+
"lint:fix": "eslint src --fix",
|
|
44
|
+
"test": "vitest run --passWithNoTests",
|
|
45
|
+
"dev": "tsc --watch",
|
|
46
|
+
"clean": "node -e \"const fs=require('node:fs'); for (const p of ['dist','tsconfig.tsbuildinfo']) fs.rmSync(p,{recursive:true,force:true});\""
|
|
47
|
+
}
|
|
48
|
+
}
|