Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Viren070 committed Dec 26, 2024
1 parent c15a98b commit 8f2c0cd
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 35 deletions.
36 changes: 18 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aiostreams",
"version": "0.0.0",
"version": "1.0.0",
"description": "Stremio addon to combine streams into one addon",
"main": "dist/server.js",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions packages/addon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aiostreams/addon",
"version": "0.0.0",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"test": "vitest run --passWithNoTests",
Expand All @@ -12,9 +12,9 @@
},
"description": "Combine all your streams into one addon and display them with consistent formatting, sorting, and filtering.",
"dependencies": {
"@aiostreams/wrappers": "0.0.0",
"@aiostreams/formatters": "0.0.0",
"@aiostreams/types": "0.0.0",
"@aiostreams/wrappers": "^1.0.0",
"@aiostreams/formatters": "^1.0.0",
"@aiostreams/types": "^1.0.0",
"express": "^4.21.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/cloudflare-workers/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@aiostreams/cloudflare-worker",
"version": "0.0.0",
"version": "1.0.0",
"scripts": {
"test": "vitest run --passWithNoTests",
"dev": "wrangler dev src/index.ts",
"deploy": "wrangler deploy --minify src/index.ts",
"build": "exit 0"
},
"dependencies": {
"@aiostreams/addon": "0.0.0",
"@aiostreams/addon": "^1.0.0",
"hono": "^4.5.3",
"hono-stremio": "^0.1.1"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/formatters/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@aiostreams/formatters",
"version": "0.0.0",
"version": "1.0.0",
"main": "./dist/index.js",
"scripts": {
"test": "vitest run --passWithNoTests",
"build": "tsc"
},
"description": "Library to take parsed information and return a formatted Stremio stream name and description",
"dependencies": {
"@aiostreams/types": "0.0.0"
"@aiostreams/types": "^1.0.0"
}
}
4 changes: 2 additions & 2 deletions packages/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aiostreams/frontend",
"version": "0.0.0",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@aiostreams/types": "0.0.0",
"@aiostreams/types": "^1.0.0",
"next": "15.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/parser/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@aiostreams/parser",
"version": "0.0.0",
"version": "1.0.0",
"main": "./dist/index.js",
"scripts": {
"test": "vitest run --passWithNoTests",
"build": "tsc"
},
"description": "Library to parse a torrent filename ",
"dependencies": {
"@aiostreams/types": "0.0.0"
"@aiostreams/types": "^1.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aiostreams/types",
"version": "0.0.0",
"version": "1.0.0",
"main": "./dist/index.js",
"scripts": {
"test": "vitest run --passWithNoTests",
Expand Down
6 changes: 3 additions & 3 deletions packages/wrappers/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@aiostreams/wrappers",
"version": "0.0.0",
"version": "1.0.0",
"main": "./dist/index.js",
"scripts": {
"test": "vitest run --passWithNoTests",
"build": "tsc"
},
"description": "Library with wrappers for different addons",
"devDependencies": {
"@aiostreams/parser": "0.0.0",
"@aiostreams/types": "0.0.0"
"@aiostreams/parser": "^1.0.0",
"@aiostreams/types": "^1.0.0"
}
}

0 comments on commit 8f2c0cd

Please sign in to comment.