@clioplaylists/clio 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/dist/package.json +74 -0
  2. package/package.json +4 -4
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@clioplaylists/clio",
3
+ "version": "0.1.2",
4
+ "description": "Appview server for the Clio application",
5
+ "main": "start.js",
6
+ "types": "index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc --project ./tsconfig.json && cp ./{.env,package.json} ./dist",
9
+ "start": "node dist/start.js",
10
+ "dev": "nodemon -r tsconfig-paths/register src/index.ts",
11
+ "test": "echo \"Error: no test specified\" && exit 1",
12
+ "lex:gen": "lex gen-server --yes ./src/lexicons ../../lexicons/com/clioplaylists/alpha/*/* ../../lexicons/com/atproto/*/*",
13
+ "buf:gen": "buf generate ./src/rpc",
14
+ "pretty": "prettier --write .",
15
+ "pretty:check": "prettier --check ."
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/Hoid/clio.git"
20
+ },
21
+ "keywords": [
22
+ "clio"
23
+ ],
24
+ "author": "Ezra Boeth",
25
+ "license": "AGPL-3.0-or-later",
26
+ "bugs": {
27
+ "url": "https://github.com/Hoid/clio/issues"
28
+ },
29
+ "homepage": "https://github.com/Hoid/clio#readme",
30
+ "files": [ "./dist" ],
31
+ "dependencies": {
32
+ "@atproto/api": "^0.13.35",
33
+ "@atproto/common": "^0.4.4",
34
+ "@atproto/crypto": "^0.4.4",
35
+ "@atproto/identity": "^0.4.6",
36
+ "@atproto/lexicon": "^0.4.6",
37
+ "@atproto/repo": "^0.5.5",
38
+ "@atproto/sync": "^0.1.13",
39
+ "@atproto/syntax": "^0.3.2",
40
+ "@atproto/xrpc-server": "^0.7.10",
41
+ "@bufbuild/protobuf": "^1.5.0",
42
+ "@connectrpc/connect": "^1.1.4",
43
+ "@connectrpc/connect-express": "^1.6.1",
44
+ "@connectrpc/connect-node": "^1.1.4",
45
+ "@connectrpc/connect-web": "^1.1.4",
46
+ "@types/cors": "^2.8.17",
47
+ "dotenv": "^16.4.7",
48
+ "express": "^4.21.1",
49
+ "pg": "^8.13.3",
50
+ "structured-headers": "^2.0.0",
51
+ "tsconfig-paths": "^4.2.0",
52
+ "uint8arrays": "^3.0.0",
53
+ "ws": "^8.18.0"
54
+ },
55
+ "devDependencies": {
56
+ "@atproto/lex-cli": "^0.5.7",
57
+ "@atproto/pds": "^0.4.34",
58
+ "@atproto/xrpc": "^0.6.4",
59
+ "@bufbuild/buf": "^1.50.0",
60
+ "@bufbuild/protoc-gen-es": "^1.5.0",
61
+ "@connectrpc/protoc-gen-connect-es": "^1.1.4",
62
+ "@types/express": "^5.0.0",
63
+ "@types/node": "^22.10.1",
64
+ "@types/pg": "^8.11.11",
65
+ "@types/ws": "^8.5.13",
66
+ "concurrently": "^9.1.0",
67
+ "nodemon": "^3.1.7",
68
+ "prettier": "^3.5.3",
69
+ "prettier-plugin-organize-imports": "^4.1.0",
70
+ "ts-node": "^10.9.2",
71
+ "tsc-alias": "^1.8.10",
72
+ "typescript": "^5.7.2"
73
+ }
74
+ }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@clioplaylists/clio",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Appview server for the Clio application",
5
- "main": "dist/start.js",
6
- "types": "dist/index.d.ts",
5
+ "main": "start.js",
6
+ "types": "index.d.ts",
7
7
  "scripts": {
8
- "build": "tsc --project ./tsconfig.json && cp .env ./dist",
8
+ "build": "tsc --project ./tsconfig.json && cp ./{.env,package.json} ./dist",
9
9
  "start": "node dist/start.js",
10
10
  "dev": "nodemon -r tsconfig-paths/register src/index.ts",
11
11
  "test": "echo \"Error: no test specified\" && exit 1",