@atproto/pds 0.4.0-beta.2 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/LICENSE.txt +7 -0
  2. package/package.json +33 -36
package/LICENSE.txt ADDED
@@ -0,0 +1,7 @@
1
+ Dual MIT/Apache-2.0 License
2
+
3
+ Copyright (c) 2022-2024 Bluesky PBC, and Contributors
4
+
5
+ Except as otherwise noted in individual files, this software is licensed under the MIT license (<http://opensource.org/licenses/MIT>), or the Apache License, Version 2.0 (<http://www.apache.org/licenses/LICENSE-2.0>).
6
+
7
+ Downstream projects and end users may chose either license individually, or both together, at their discretion. The motivation for this dual-licensing is the additional software patent assurance provided by Apache 2.0.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/pds",
3
- "version": "0.4.0-beta.2",
3
+ "version": "0.4.0",
4
4
  "license": "MIT",
5
5
  "description": "Reference implementation of atproto Personal Data Server (PDS)",
6
6
  "keywords": [
@@ -14,35 +14,8 @@
14
14
  "directory": "packages/pds"
15
15
  },
16
16
  "main": "dist/index.js",
17
- "publishConfig": {
18
- "main": "dist/index.js",
19
- "types": "dist/index.d.ts"
20
- },
21
17
  "bin": "dist/bin.js",
22
- "scripts": {
23
- "codegen": "lex gen-server ./src/lexicon ../../lexicons/com/atproto/*/* ../../lexicons/app/bsky/*/*",
24
- "build": "node ./build.js",
25
- "postbuild": "tsc --build tsconfig.build.json",
26
- "test": "../dev-infra/with-test-redis-and-db.sh jest",
27
- "test:sqlite": "jest",
28
- "test:sqlite-only": "jest --testPathIgnorePatterns /tests/proxied/*",
29
- "test:log": "tail -50 test.log | pino-pretty",
30
- "update-main-to-dist": "node ../../update-main-to-dist.js packages/pds",
31
- "bench": "../dev-infra/with-test-redis-and-db.sh jest --config jest.bench.config.js",
32
- "test:updateSnapshot": "jest --updateSnapshot",
33
- "migration:create": "ts-node ./bin/migration-create.ts"
34
- },
35
18
  "dependencies": {
36
- "@atproto/api": "workspace:^",
37
- "@atproto/aws": "workspace:^",
38
- "@atproto/common": "workspace:^",
39
- "@atproto/crypto": "workspace:^",
40
- "@atproto/identity": "workspace:^",
41
- "@atproto/lexicon": "workspace:^",
42
- "@atproto/repo": "workspace:^",
43
- "@atproto/syntax": "workspace:^",
44
- "@atproto/xrpc": "workspace:^",
45
- "@atproto/xrpc-server": "workspace:^",
46
19
  "@did-plc/lib": "^0.0.4",
47
20
  "better-sqlite3": "^9.4.0",
48
21
  "bytes": "^3.1.2",
@@ -70,13 +43,19 @@
70
43
  "sharp": "^0.32.6",
71
44
  "typed-emitter": "^2.1.0",
72
45
  "uint8arrays": "3.0.0",
73
- "zod": "^3.21.4"
46
+ "zod": "^3.21.4",
47
+ "@atproto/api": "^0.10.0",
48
+ "@atproto/aws": "^0.1.7",
49
+ "@atproto/common": "^0.3.3",
50
+ "@atproto/crypto": "^0.3.0",
51
+ "@atproto/identity": "^0.3.2",
52
+ "@atproto/lexicon": "^0.3.1",
53
+ "@atproto/repo": "^0.3.7",
54
+ "@atproto/syntax": "^0.1.5",
55
+ "@atproto/xrpc": "^0.4.1",
56
+ "@atproto/xrpc-server": "^0.4.2"
74
57
  },
75
58
  "devDependencies": {
76
- "@atproto/api": "workspace:^",
77
- "@atproto/bsky": "workspace:^",
78
- "@atproto/dev-env": "workspace:^",
79
- "@atproto/lex-cli": "workspace:^",
80
59
  "@atproto/pds-entryway": "npm:@atproto/pds@0.3.0-entryway.3",
81
60
  "@did-plc/server": "^0.0.1",
82
61
  "@types/cors": "^2.8.12",
@@ -88,6 +67,24 @@
88
67
  "@types/qs": "^6.9.7",
89
68
  "axios": "^0.27.2",
90
69
  "get-port": "^6.1.2",
91
- "ws": "^8.12.0"
92
- }
93
- }
70
+ "ws": "^8.12.0",
71
+ "@atproto/api": "^0.10.0",
72
+ "@atproto/bsky": "^0.0.32",
73
+ "@atproto/dev-env": "^0.2.32",
74
+ "@atproto/lex-cli": "^0.3.0"
75
+ },
76
+ "scripts": {
77
+ "codegen": "lex gen-server ./src/lexicon ../../lexicons/com/atproto/*/* ../../lexicons/app/bsky/*/*",
78
+ "build": "node ./build.js",
79
+ "postbuild": "tsc --build tsconfig.build.json",
80
+ "test": "../dev-infra/with-test-redis-and-db.sh jest",
81
+ "test:sqlite": "jest",
82
+ "test:sqlite-only": "jest --testPathIgnorePatterns /tests/proxied/*",
83
+ "test:log": "tail -50 test.log | pino-pretty",
84
+ "update-main-to-dist": "node ../../update-main-to-dist.js packages/pds",
85
+ "bench": "../dev-infra/with-test-redis-and-db.sh jest --config jest.bench.config.js",
86
+ "test:updateSnapshot": "jest --updateSnapshot",
87
+ "migration:create": "ts-node ./bin/migration-create.ts"
88
+ },
89
+ "types": "dist/index.d.ts"
90
+ }