Skip to content

Commit

Permalink
fix: Add correct "repository" field to package.json (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins authored Jul 4, 2024
1 parent 06b43f6 commit 27d6b24
Show file tree
Hide file tree
Showing 6 changed files with 119 additions and 96 deletions.
31 changes: 16 additions & 15 deletions packages/angular-store/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
{
"name": "@tanstack/angular-store",
"author": "Tanner Linsley",
"version": "0.5.3",
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
"author": "Tanner Linsley",
"license": "MIT",
"repository": "tanstack/store",
"repository": {
"type": "git",
"url": "https://github.com/TanStack/store.git",
"directory": "packages/angular-store"
},
"homepage": "https://tanstack.com/store",
"description": "",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"store",
"typescript",
"angular"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test:eslint": "eslint ./src ./tests",
Expand All @@ -15,18 +28,6 @@
"test:build": "publint --strict",
"build": "ng-packagr -p ng-package.json -c tsconfig.build.json && rimraf ./dist/package.json"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"store",
"typescript",
"angular"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/fesm2022/tanstack-angular-store.mjs",
Expand Down
37 changes: 19 additions & 18 deletions packages/react-store/package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
{
"name": "@tanstack/react-store",
"author": "Tanner Linsley",
"version": "0.5.3",
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
"author": "Tanner Linsley",
"license": "MIT",
"repository": "tanstack/store",
"homepage": "https://tanstack.com/",
"description": "",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
"repository": {
"type": "git",
"url": "https://github.com/TanStack/store.git",
"directory": "packages/react-store"
},
"homepage": "https://tanstack.com/store",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"store",
"react",
"typescript"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test:eslint": "eslint ./src ./tests",
Expand All @@ -33,10 +34,6 @@
"test:build": "publint --strict",
"build": "vite build"
},
"files": [
"dist",
"src"
],
"type": "module",
"types": "dist/esm/index.d.ts",
"main": "dist/cjs/index.cjs",
Expand All @@ -55,16 +52,20 @@
"./package.json": "./package.json"
},
"sideEffects": false,
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"files": [
"dist",
"src"
],
"dependencies": {
"@tanstack/store": "workspace:*",
"use-sync-external-store": "^1.2.0"
},
"devDependencies": {
"@types/use-sync-external-store": "^0.0.3",
"@vitejs/plugin-react": "^4.3.1"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}
35 changes: 18 additions & 17 deletions packages/solid-store/package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
{
"name": "@tanstack/solid-store",
"author": "Tanner Linsley",
"version": "0.5.3",
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
"author": "Tanner Linsley",
"license": "MIT",
"repository": "tanstack/store",
"homepage": "https://tanstack.com/",
"description": "",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
"repository": {
"type": "git",
"url": "https://github.com/TanStack/store.git",
"directory": "packages/solid-store"
},
"homepage": "https://tanstack.com/store",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"store",
"solid",
"typescript"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test:eslint": "eslint ./src ./tests",
Expand All @@ -33,10 +34,6 @@
"test:build": "publint --strict",
"build": "tsc -p tsconfig.build.json"
},
"files": [
"dist",
"src"
],
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.js",
Expand All @@ -55,14 +52,18 @@
"./package.json": "./package.json"
},
"sideEffects": false,
"peerDependencies": {
"solid-js": "^1.6.0"
},
"files": [
"dist",
"src"
],
"dependencies": {
"@tanstack/store": "workspace:*"
},
"devDependencies": {
"solid-js": "^1.7.8",
"vite-plugin-solid": "^2.10.2"
},
"peerDependencies": {
"solid-js": "^1.6.0"
}
}
29 changes: 15 additions & 14 deletions packages/store/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
{
"name": "@tanstack/store",
"author": "Tanner Linsley",
"version": "0.5.3",
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
"author": "Tanner Linsley",
"license": "MIT",
"repository": "tanstack/store",
"repository": {
"type": "git",
"url": "https://github.com/TanStack/store.git",
"directory": "packages/store"
},
"homepage": "https://tanstack.com/store",
"description": "",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"store",
"typescript"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test:eslint": "eslint ./src ./tests",
Expand All @@ -21,17 +33,6 @@
"test:build": "publint --strict",
"build": "vite build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"store",
"typescript"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"type": "module",
"types": "dist/esm/index.d.ts",
"main": "dist/cjs/index.cjs",
Expand Down
31 changes: 22 additions & 9 deletions packages/svelte-store/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
{
"name": "@tanstack/svelte-store",
"version": "0.5.3",
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TanStack/store.git",
"directory": "packages/svelte-store"
},
"homepage": "https://tanstack.com/store",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"store",
"typescript",
"svelte"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test:types": "svelte-check --tsconfig ./tsconfig.json",
"test:eslint": "eslint ./src ./tests",
"test:lib": "vitest",
"test:lib:dev": "pnpm run test:lib --watch",
"test:build": "publint --strict",
"build": "svelte-package --input ./src --output ./dist"
},
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/index.js",
Expand All @@ -19,19 +40,11 @@
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test:types": "svelte-check --tsconfig ./tsconfig.json",
"test:eslint": "eslint ./src ./tests",
"test:lib": "vitest",
"test:lib:dev": "pnpm run test:lib --watch",
"test:build": "publint --strict",
"build": "svelte-package --input ./src --output ./dist"
},
"dependencies": {
"@tanstack/store": "workspace:*"
},
Expand Down
52 changes: 29 additions & 23 deletions packages/vue-store/package.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,24 @@
{
"name": "@tanstack/vue-store",
"version": "0.5.3",
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
"author": "Tanner Linsley",
"license": "MIT",
"repository": "tanstack/store",
"homepage": "https://tanstack.com/",
"description": "",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
"repository": {
"type": "git",
"url": "https://github.com/TanStack/store.git",
"directory": "packages/vue-store"
},
"homepage": "https://tanstack.com/store",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"type": "module",
"types": "dist/esm/index.d.ts",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"keywords": [
"store",
"typescript",
"vue"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test:eslint": "eslint ./src ./tests",
Expand All @@ -50,6 +38,24 @@
"test:build": "publint --strict",
"build": "vite build"
},
"type": "module",
"types": "dist/esm/index.d.ts",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"src"
Expand Down

0 comments on commit 27d6b24

Please sign in to comment.