@devvit/web 0.11.20-next-2025-08-05-17-22-42-748be7aa5.0 → 0.11.20-next-2025-08-05-19-03-37-1778a631b.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/README.md +9 -4
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -4,19 +4,23 @@ A central package for all your Devvit Web needs! This package provides the core
|
|
|
4
4
|
building web applications with Devvit. Just bring your own framework and start building!
|
|
5
5
|
|
|
6
6
|
## Exports
|
|
7
|
+
|
|
7
8
|
This package exports the following modules:
|
|
9
|
+
|
|
8
10
|
- `@devvit/web/server`: Server-side utilities for Devvit web applications, including Redis clients,
|
|
9
11
|
access to the Reddit API, and more.
|
|
10
12
|
- `@devvit/web/client`: Client-side utilities for Devvit web applications, including access to our
|
|
11
13
|
client-side context, effects, and more.
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
14
|
+
- **NOTE:** If you are having difficulty importing from this package, you may need to
|
|
15
|
+
set `compilerOptions.customConditions` to `["browser"]` in your `tsconfig.json` file. (This
|
|
16
|
+
should be done for you automatically if you used one of our starter templates.)
|
|
15
17
|
- `@devvit/web/shared`: Shared utilities and types for Devvit web applications - usable on both
|
|
16
18
|
the client and server.
|
|
17
19
|
|
|
18
20
|
## Other packages
|
|
21
|
+
|
|
19
22
|
All the functionality in this package is also available in the following packages:
|
|
23
|
+
|
|
20
24
|
- `@devvit/client`: Client-side utilities for Devvit web applications.
|
|
21
25
|
- `@devvit/media`: Media-related utilities for Devvit web applications.
|
|
22
26
|
- `@devvit/realtime`: Realtime communication utilities for Devvit web applications.
|
|
@@ -31,7 +35,8 @@ All the functionality in this package is also available in the following package
|
|
|
31
35
|
One single `@devvit/web` dependency replaces all of these packages, so you can use it to
|
|
32
36
|
build your web application without needing to install or manage multiple packages.
|
|
33
37
|
|
|
34
|
-
However,
|
|
38
|
+
However, _not_ included here is the following package:
|
|
39
|
+
|
|
35
40
|
- `@devvit/payments`: Payment-related utilities for Devvit web applications. Once your app has been
|
|
36
41
|
approved to handle payments, you can use this package to handle payments in your web application.
|
|
37
42
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devvit/web",
|
|
3
|
-
"version": "0.11.20-next-2025-08-05-
|
|
3
|
+
"version": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0",
|
|
4
4
|
"license": "BSD-3-Clause",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,24 +19,24 @@
|
|
|
19
19
|
"test:types": "tsc --noEmit"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@devvit/client": "0.11.20-next-2025-08-05-
|
|
23
|
-
"@devvit/media": "0.11.20-next-2025-08-05-
|
|
24
|
-
"@devvit/realtime": "0.11.20-next-2025-08-05-
|
|
25
|
-
"@devvit/reddit": "0.11.20-next-2025-08-05-
|
|
26
|
-
"@devvit/redis": "0.11.20-next-2025-08-05-
|
|
27
|
-
"@devvit/scheduler": "0.11.20-next-2025-08-05-
|
|
28
|
-
"@devvit/server": "0.11.20-next-2025-08-05-
|
|
29
|
-
"@devvit/settings": "0.11.20-next-2025-08-05-
|
|
30
|
-
"@devvit/shared": "0.11.20-next-2025-08-05-
|
|
22
|
+
"@devvit/client": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0",
|
|
23
|
+
"@devvit/media": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0",
|
|
24
|
+
"@devvit/realtime": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0",
|
|
25
|
+
"@devvit/reddit": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0",
|
|
26
|
+
"@devvit/redis": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0",
|
|
27
|
+
"@devvit/scheduler": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0",
|
|
28
|
+
"@devvit/server": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0",
|
|
29
|
+
"@devvit/settings": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0",
|
|
30
|
+
"@devvit/shared": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@devvit/repo-tools": "0.11.20-next-2025-08-05-
|
|
34
|
-
"@devvit/tsconfig": "0.11.20-next-2025-08-05-
|
|
33
|
+
"@devvit/repo-tools": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0",
|
|
34
|
+
"@devvit/tsconfig": "0.11.20-next-2025-08-05-19-03-37-1778a631b.0",
|
|
35
35
|
"eslint": "9.11.1",
|
|
36
36
|
"typescript": "5.8.3"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"directory": "dist"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "9cbc091c241c49d4a7fd1edaf34a2120f8d1b263"
|
|
42
42
|
}
|