create-devvit 0.11.18-next-2025-06-18-15-43-22-ccadc28ba.0 → 0.11.18-next-2025-06-18-16-42-57-8c6113674.0

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/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # create-devvit
2
+
3
+ Package to allow for `npm create devvit` syntax to work. This does the same thing as calling
4
+ `devvit new` would.
5
+
6
+ Sign up for Reddit's Developer Platform [here!](https://developers.reddit.com)
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "create-devvit",
3
+ "version": "0.11.18-next-2025-06-18-16-42-57-8c6113674.0",
4
+ "license": "BSD-3-Clause",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://developers.reddit.com/"
8
+ },
9
+ "type": "module",
10
+ "main": "./index.js",
11
+ "bin": "./dist/index.js",
12
+ "scripts": {
13
+ "build": "tsc",
14
+ "clean": "rm -rf .turbo coverage dist",
15
+ "clobber": "yarn clean && rm -rf node_modules",
16
+ "dev": "tsc -w",
17
+ "lint": "redlint .",
18
+ "lint:fix": "yarn lint --fix",
19
+ "prepublishOnly": "publish-package-json",
20
+ "test": "yarn test:types && yarn lint",
21
+ "test:types": "tsc --noEmit"
22
+ },
23
+ "types": "./index.d.ts",
24
+ "dependencies": {
25
+ "@devvit/cli": "0.11.18-next-2025-06-18-16-42-57-8c6113674.0"
26
+ },
27
+ "devDependencies": {
28
+ "@devvit/repo-tools": "0.11.18-next-2025-06-18-16-42-57-8c6113674.0",
29
+ "@devvit/tsconfig": "0.11.18-next-2025-06-18-16-42-57-8c6113674.0",
30
+ "eslint": "9.11.1",
31
+ "typescript": "5.8.3"
32
+ },
33
+ "source": "./src/index.ts",
34
+ "gitHead": "adb06f3fcbdf189e763e3f8502ef96b16820109a"
35
+ }
package/package.json CHANGED
@@ -1,14 +1,22 @@
1
1
  {
2
2
  "name": "create-devvit",
3
- "version": "0.11.18-next-2025-06-18-15-43-22-ccadc28ba.0",
3
+ "version": "0.11.18-next-2025-06-18-16-42-57-8c6113674.0",
4
4
  "license": "BSD-3-Clause",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://developers.reddit.com/"
8
8
  },
9
9
  "type": "module",
10
- "main": "./index.js",
10
+ "exports": {
11
+ ".": "./dist/index.js",
12
+ "./package.json": "./package.json",
13
+ "./*": "./dist/*"
14
+ },
15
+ "main": "./dist/index.js",
11
16
  "bin": "./dist/index.js",
17
+ "files": [
18
+ "dist/**"
19
+ ],
12
20
  "scripts": {
13
21
  "build": "tsc",
14
22
  "clean": "rm -rf .turbo coverage dist",
@@ -20,19 +28,16 @@
20
28
  "test": "yarn test:types && yarn lint",
21
29
  "test:types": "tsc --noEmit"
22
30
  },
23
- "types": "./index.d.ts",
31
+ "types": "./dist/index.d.ts",
24
32
  "dependencies": {
25
- "@devvit/cli": "0.11.18-next-2025-06-18-15-43-22-ccadc28ba.0"
33
+ "@devvit/cli": "0.11.18-next-2025-06-18-16-42-57-8c6113674.0"
26
34
  },
27
35
  "devDependencies": {
28
- "@devvit/repo-tools": "0.11.18-next-2025-06-18-15-43-22-ccadc28ba.0",
29
- "@devvit/tsconfig": "0.11.18-next-2025-06-18-15-43-22-ccadc28ba.0",
36
+ "@devvit/repo-tools": "0.11.18-next-2025-06-18-16-42-57-8c6113674.0",
37
+ "@devvit/tsconfig": "0.11.18-next-2025-06-18-16-42-57-8c6113674.0",
30
38
  "eslint": "9.11.1",
31
39
  "typescript": "5.8.3"
32
40
  },
33
- "publishConfig": {
34
- "directory": "dist"
35
- },
36
41
  "source": "./src/index.ts",
37
- "gitHead": "00c906d8e078fc8498cdf08b7572312d2f8f444a"
42
+ "gitHead": "adb06f3fcbdf189e763e3f8502ef96b16820109a"
38
43
  }
File without changes
File without changes
File without changes