@atproto/dev-env 0.5.23 → 0.5.25
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/CHANGELOG.md +33 -0
- package/package.json +29 -21
- package/tsconfig.build.json +19 -2
- package/assets/at.png +0 -0
- package/assets/hd-key.jpg +0 -0
- package/assets/key-alt.jpg +0 -0
- package/assets/key-landscape-large.jpg +0 -0
- package/assets/key-landscape-small.jpg +0 -0
- package/assets/key-portrait-large.jpg +0 -0
- package/assets/key-portrait-small.jpg +0 -0
- package/tsconfig.build.tsbuildinfo +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @atproto/dev-env
|
|
2
2
|
|
|
3
|
+
## 0.5.25
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`4f1e203`](https://github.com/bluesky-social/atproto/commit/4f1e20387bb2a212e263590ac7a3458e8f939091), [`f6409db`](https://github.com/bluesky-social/atproto/commit/f6409dbcefdd5565b1ba23c52dc71ec7e791e2e9)]:
|
|
8
|
+
- @atproto/pds@0.5.14
|
|
9
|
+
- @atproto/bsky@0.0.253
|
|
10
|
+
- @atproto/api@0.20.25
|
|
11
|
+
- @atproto/ozone@0.2.11
|
|
12
|
+
|
|
13
|
+
## 0.5.24
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#5099](https://github.com/bluesky-social/atproto/pull/5099) [`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Update TypeScript build to rely on references to composite internal projects
|
|
18
|
+
|
|
19
|
+
- [#5099](https://github.com/bluesky-social/atproto/pull/5099) [`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Bundle only necessary files in the NPM tarball, including the `CHANGELOG.md` and `README.md` files (if present).
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`28a0b58`](https://github.com/bluesky-social/atproto/commit/28a0b588147863eaef948cd2bb8fc0f19d08cda9), [`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07), [`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07), [`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07), [`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07), [`85baa2d`](https://github.com/bluesky-social/atproto/commit/85baa2dac9819288f8a4af12c8831a24c80669d5), [`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07)]:
|
|
22
|
+
- @atproto/syntax@0.6.4
|
|
23
|
+
- @atproto/bsky@0.0.252
|
|
24
|
+
- @atproto/identity@0.5.3
|
|
25
|
+
- @atproto/xrpc-server@0.11.6
|
|
26
|
+
- @atproto/common-web@0.5.3
|
|
27
|
+
- @atproto/lex@0.1.7
|
|
28
|
+
- @atproto/lexicon@0.7.4
|
|
29
|
+
- @atproto/crypto@0.5.3
|
|
30
|
+
- @atproto/bsync@0.0.33
|
|
31
|
+
- @atproto/ozone@0.2.10
|
|
32
|
+
- @atproto/sync@0.3.7
|
|
33
|
+
- @atproto/api@0.20.24
|
|
34
|
+
- @atproto/pds@0.5.13
|
|
35
|
+
|
|
3
36
|
## 0.5.23
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atproto/dev-env",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.25",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Local development environment helper for atproto development",
|
|
6
6
|
"keywords": [
|
|
@@ -12,6 +12,21 @@
|
|
|
12
12
|
"url": "https://github.com/bluesky-social/atproto",
|
|
13
13
|
"directory": "packages/dev-env"
|
|
14
14
|
},
|
|
15
|
+
"files": [
|
|
16
|
+
"./src",
|
|
17
|
+
"./tsconfig.json",
|
|
18
|
+
"./tsconfig.build.json",
|
|
19
|
+
"./dist",
|
|
20
|
+
"./README.md",
|
|
21
|
+
"./CHANGELOG.md"
|
|
22
|
+
],
|
|
23
|
+
"type": "module",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"default": "./dist/index.js"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
15
30
|
"engines": {
|
|
16
31
|
"node": ">=22"
|
|
17
32
|
},
|
|
@@ -25,30 +40,23 @@
|
|
|
25
40
|
"multiformats": "^13.0.0",
|
|
26
41
|
"uint8arrays": "^5.0.0",
|
|
27
42
|
"undici": "^8.5.0",
|
|
28
|
-
"@atproto/api": "^0.20.
|
|
29
|
-
"@atproto/bsky": "^0.0.
|
|
30
|
-
"@atproto/bsync": "^0.0.
|
|
31
|
-
"@atproto/common-web": "^0.5.
|
|
32
|
-
"@atproto/crypto": "^0.5.
|
|
33
|
-
"@atproto/identity": "^0.5.
|
|
34
|
-
"@atproto/lex": "^0.1.
|
|
35
|
-
"@atproto/lexicon": "^0.7.
|
|
36
|
-
"@atproto/ozone": "^0.2.
|
|
37
|
-
"@atproto/pds": "^0.5.
|
|
38
|
-
"@atproto/sync": "^0.3.
|
|
39
|
-
"@atproto/syntax": "^0.6.
|
|
40
|
-
"@atproto/xrpc-server": "^0.11.
|
|
43
|
+
"@atproto/api": "^0.20.25",
|
|
44
|
+
"@atproto/bsky": "^0.0.253",
|
|
45
|
+
"@atproto/bsync": "^0.0.33",
|
|
46
|
+
"@atproto/common-web": "^0.5.3",
|
|
47
|
+
"@atproto/crypto": "^0.5.3",
|
|
48
|
+
"@atproto/identity": "^0.5.3",
|
|
49
|
+
"@atproto/lex": "^0.1.7",
|
|
50
|
+
"@atproto/lexicon": "^0.7.4",
|
|
51
|
+
"@atproto/ozone": "^0.2.11",
|
|
52
|
+
"@atproto/pds": "^0.5.14",
|
|
53
|
+
"@atproto/sync": "^0.3.7",
|
|
54
|
+
"@atproto/syntax": "^0.6.4",
|
|
55
|
+
"@atproto/xrpc-server": "^0.11.6"
|
|
41
56
|
},
|
|
42
57
|
"devDependencies": {
|
|
43
58
|
"@types/express": "^4.17.13"
|
|
44
59
|
},
|
|
45
|
-
"type": "module",
|
|
46
|
-
"exports": {
|
|
47
|
-
".": {
|
|
48
|
-
"types": "./dist/index.d.ts",
|
|
49
|
-
"default": "./dist/index.js"
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
60
|
"scripts": {
|
|
53
61
|
"build": "tsgo --build tsconfig.build.json",
|
|
54
62
|
"start": "../dev-infra/with-test-redis-and-db.sh node --enable-source-maps dist/bin.js",
|
package/tsconfig.build.json
CHANGED
|
@@ -1,8 +1,25 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends": "../../tsconfig/node.json",
|
|
2
|
+
"extends": ["../../tsconfig/node.tsconfig.json"],
|
|
3
|
+
"include": ["./src"],
|
|
4
|
+
"references": [
|
|
5
|
+
{ "path": "../api/tsconfig.build.json" },
|
|
6
|
+
{ "path": "../bsky/tsconfig.build.json" },
|
|
7
|
+
{ "path": "../bsync/tsconfig.build.json" },
|
|
8
|
+
{ "path": "../common-web/tsconfig.build.json" },
|
|
9
|
+
{ "path": "../crypto/tsconfig.build.json" },
|
|
10
|
+
{ "path": "../identity/tsconfig.build.json" },
|
|
11
|
+
{ "path": "../lex/lex/tsconfig.build.json" },
|
|
12
|
+
{ "path": "../lexicon/tsconfig.build.json" },
|
|
13
|
+
{ "path": "../ozone/tsconfig.build.json" },
|
|
14
|
+
{ "path": "../pds/tsconfig.build.json" },
|
|
15
|
+
{ "path": "../sync/tsconfig.build.json" },
|
|
16
|
+
{ "path": "../syntax/tsconfig.build.json" },
|
|
17
|
+
{ "path": "../xrpc-server/tsconfig.build.json" },
|
|
18
|
+
],
|
|
3
19
|
"compilerOptions": {
|
|
4
20
|
"rootDir": "./src",
|
|
5
21
|
"outDir": "./dist",
|
|
22
|
+
// @TODO Change to true and fix implicit any errors
|
|
23
|
+
"noImplicitAny": false,
|
|
6
24
|
},
|
|
7
|
-
"include": ["./src"],
|
|
8
25
|
}
|
package/assets/at.png
DELETED
|
Binary file
|
package/assets/hd-key.jpg
DELETED
|
Binary file
|
package/assets/key-alt.jpg
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":"7.0.0-dev.20260614.1","root":["./src/bin.ts","./src/bsky.ts","./src/bsync.ts","./src/const.ts","./src/env.ts","./src/feed-gen.ts","./src/index.ts","./src/introspect.ts","./src/moderator-client.ts","./src/network-no-appview.ts","./src/network.ts","./src/ozone.ts","./src/pds.ts","./src/plc.ts","./src/service-profile-lexicon.ts","./src/service-profile-ozone.ts","./src/service-profile.ts","./src/types.ts","./src/util.ts","./src/mock/data.ts","./src/mock/index.ts","./src/mock/img/blur-hash-avatar-b64.ts","./src/mock/img/labeled-img-b64.ts","./src/seed/author-feed.ts","./src/seed/basic.ts","./src/seed/client.ts","./src/seed/follows.ts","./src/seed/index.ts","./src/seed/likes.ts","./src/seed/quotes.ts","./src/seed/reposts.ts","./src/seed/thread-v2.ts","./src/seed/users-bulk.ts","./src/seed/users.ts","./src/seed/verifications.ts"]}
|