Skip to content

Commit 27d6b24

Browse files
fix: Add correct "repository" field to package.json (#74)
1 parent 06b43f6 commit 27d6b24

File tree

6 files changed

+119
-96
lines changed

6 files changed

+119
-96
lines changed

packages/angular-store/package.json

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,24 @@
11
{
22
"name": "@tanstack/angular-store",
3-
"author": "Tanner Linsley",
43
"version": "0.5.3",
4+
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
5+
"author": "Tanner Linsley",
56
"license": "MIT",
6-
"repository": "tanstack/store",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/TanStack/store.git",
10+
"directory": "packages/angular-store"
11+
},
712
"homepage": "https://tanstack.com/store",
8-
"description": "",
13+
"funding": {
14+
"type": "github",
15+
"url": "https://github.com/sponsors/tannerlinsley"
16+
},
17+
"keywords": [
18+
"store",
19+
"typescript",
20+
"angular"
21+
],
922
"scripts": {
1023
"clean": "rimraf ./dist && rimraf ./coverage",
1124
"test:eslint": "eslint ./src ./tests",
@@ -15,18 +28,6 @@
1528
"test:build": "publint --strict",
1629
"build": "ng-packagr -p ng-package.json -c tsconfig.build.json && rimraf ./dist/package.json"
1730
},
18-
"publishConfig": {
19-
"registry": "https://registry.npmjs.org/"
20-
},
21-
"keywords": [
22-
"store",
23-
"typescript",
24-
"angular"
25-
],
26-
"funding": {
27-
"type": "github",
28-
"url": "https://github.com/sponsors/tannerlinsley"
29-
},
3031
"type": "module",
3132
"types": "dist/index.d.ts",
3233
"module": "dist/fesm2022/tanstack-angular-store.mjs",

packages/react-store/package.json

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
{
22
"name": "@tanstack/react-store",
3-
"author": "Tanner Linsley",
43
"version": "0.5.3",
4+
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
5+
"author": "Tanner Linsley",
56
"license": "MIT",
6-
"repository": "tanstack/store",
7-
"homepage": "https://tanstack.com/",
8-
"description": "",
9-
"publishConfig": {
10-
"registry": "https://registry.npmjs.org/"
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/TanStack/store.git",
10+
"directory": "packages/react-store"
11+
},
12+
"homepage": "https://tanstack.com/store",
13+
"funding": {
14+
"type": "github",
15+
"url": "https://github.com/sponsors/tannerlinsley"
1116
},
1217
"keywords": [
1318
"store",
1419
"react",
1520
"typescript"
1621
],
17-
"funding": {
18-
"type": "github",
19-
"url": "https://github.com/sponsors/tannerlinsley"
20-
},
2122
"scripts": {
2223
"clean": "rimraf ./dist && rimraf ./coverage",
2324
"test:eslint": "eslint ./src ./tests",
@@ -33,10 +34,6 @@
3334
"test:build": "publint --strict",
3435
"build": "vite build"
3536
},
36-
"files": [
37-
"dist",
38-
"src"
39-
],
4037
"type": "module",
4138
"types": "dist/esm/index.d.ts",
4239
"main": "dist/cjs/index.cjs",
@@ -55,16 +52,20 @@
5552
"./package.json": "./package.json"
5653
},
5754
"sideEffects": false,
58-
"peerDependencies": {
59-
"react": "^17.0.0 || ^18.0.0",
60-
"react-dom": "^17.0.0 || ^18.0.0"
61-
},
55+
"files": [
56+
"dist",
57+
"src"
58+
],
6259
"dependencies": {
6360
"@tanstack/store": "workspace:*",
6461
"use-sync-external-store": "^1.2.0"
6562
},
6663
"devDependencies": {
6764
"@types/use-sync-external-store": "^0.0.3",
6865
"@vitejs/plugin-react": "^4.3.1"
66+
},
67+
"peerDependencies": {
68+
"react": "^17.0.0 || ^18.0.0",
69+
"react-dom": "^17.0.0 || ^18.0.0"
6970
}
7071
}

packages/solid-store/package.json

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
{
22
"name": "@tanstack/solid-store",
3-
"author": "Tanner Linsley",
43
"version": "0.5.3",
4+
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
5+
"author": "Tanner Linsley",
56
"license": "MIT",
6-
"repository": "tanstack/store",
7-
"homepage": "https://tanstack.com/",
8-
"description": "",
9-
"publishConfig": {
10-
"registry": "https://registry.npmjs.org/"
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/TanStack/store.git",
10+
"directory": "packages/solid-store"
11+
},
12+
"homepage": "https://tanstack.com/store",
13+
"funding": {
14+
"type": "github",
15+
"url": "https://github.com/sponsors/tannerlinsley"
1116
},
1217
"keywords": [
1318
"store",
1419
"solid",
1520
"typescript"
1621
],
17-
"funding": {
18-
"type": "github",
19-
"url": "https://github.com/sponsors/tannerlinsley"
20-
},
2122
"scripts": {
2223
"clean": "rimraf ./dist && rimraf ./coverage",
2324
"test:eslint": "eslint ./src ./tests",
@@ -33,10 +34,6 @@
3334
"test:build": "publint --strict",
3435
"build": "tsc -p tsconfig.build.json"
3536
},
36-
"files": [
37-
"dist",
38-
"src"
39-
],
4037
"type": "module",
4138
"types": "dist/index.d.ts",
4239
"main": "dist/index.js",
@@ -55,14 +52,18 @@
5552
"./package.json": "./package.json"
5653
},
5754
"sideEffects": false,
58-
"peerDependencies": {
59-
"solid-js": "^1.6.0"
60-
},
55+
"files": [
56+
"dist",
57+
"src"
58+
],
6159
"dependencies": {
6260
"@tanstack/store": "workspace:*"
6361
},
6462
"devDependencies": {
6563
"solid-js": "^1.7.8",
6664
"vite-plugin-solid": "^2.10.2"
65+
},
66+
"peerDependencies": {
67+
"solid-js": "^1.6.0"
6768
}
6869
}

packages/store/package.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
{
22
"name": "@tanstack/store",
3-
"author": "Tanner Linsley",
43
"version": "0.5.3",
4+
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
5+
"author": "Tanner Linsley",
56
"license": "MIT",
6-
"repository": "tanstack/store",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/TanStack/store.git",
10+
"directory": "packages/store"
11+
},
712
"homepage": "https://tanstack.com/store",
8-
"description": "",
13+
"funding": {
14+
"type": "github",
15+
"url": "https://github.com/sponsors/tannerlinsley"
16+
},
17+
"keywords": [
18+
"store",
19+
"typescript"
20+
],
921
"scripts": {
1022
"clean": "rimraf ./dist && rimraf ./coverage",
1123
"test:eslint": "eslint ./src ./tests",
@@ -21,17 +33,6 @@
2133
"test:build": "publint --strict",
2234
"build": "vite build"
2335
},
24-
"publishConfig": {
25-
"registry": "https://registry.npmjs.org/"
26-
},
27-
"keywords": [
28-
"store",
29-
"typescript"
30-
],
31-
"funding": {
32-
"type": "github",
33-
"url": "https://github.com/sponsors/tannerlinsley"
34-
},
3536
"type": "module",
3637
"types": "dist/esm/index.d.ts",
3738
"main": "dist/cjs/index.cjs",

packages/svelte-store/package.json

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,33 @@
11
{
22
"name": "@tanstack/svelte-store",
33
"version": "0.5.3",
4+
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
5+
"author": "Tanner Linsley",
46
"license": "MIT",
57
"repository": {
68
"type": "git",
79
"url": "https://github.com/TanStack/store.git",
810
"directory": "packages/svelte-store"
911
},
12+
"homepage": "https://tanstack.com/store",
13+
"funding": {
14+
"type": "github",
15+
"url": "https://github.com/sponsors/tannerlinsley"
16+
},
17+
"keywords": [
18+
"store",
19+
"typescript",
20+
"svelte"
21+
],
22+
"scripts": {
23+
"clean": "rimraf ./dist && rimraf ./coverage",
24+
"test:types": "svelte-check --tsconfig ./tsconfig.json",
25+
"test:eslint": "eslint ./src ./tests",
26+
"test:lib": "vitest",
27+
"test:lib:dev": "pnpm run test:lib --watch",
28+
"test:build": "publint --strict",
29+
"build": "svelte-package --input ./src --output ./dist"
30+
},
1031
"type": "module",
1132
"types": "dist/index.d.ts",
1233
"module": "dist/index.js",
@@ -19,19 +40,11 @@
1940
},
2041
"./package.json": "./package.json"
2142
},
43+
"sideEffects": false,
2244
"files": [
2345
"dist",
2446
"src"
2547
],
26-
"scripts": {
27-
"clean": "rimraf ./dist && rimraf ./coverage",
28-
"test:types": "svelte-check --tsconfig ./tsconfig.json",
29-
"test:eslint": "eslint ./src ./tests",
30-
"test:lib": "vitest",
31-
"test:lib:dev": "pnpm run test:lib --watch",
32-
"test:build": "publint --strict",
33-
"build": "svelte-package --input ./src --output ./dist"
34-
},
3548
"dependencies": {
3649
"@tanstack/store": "workspace:*"
3750
},

packages/vue-store/package.json

Lines changed: 29 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,24 @@
11
{
22
"name": "@tanstack/vue-store",
33
"version": "0.5.3",
4+
"description": "Framework agnostic type-safe store w/ reactive framework adapters",
45
"author": "Tanner Linsley",
56
"license": "MIT",
6-
"repository": "tanstack/store",
7-
"homepage": "https://tanstack.com/",
8-
"description": "",
9-
"publishConfig": {
10-
"registry": "https://registry.npmjs.org/"
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/TanStack/store.git",
10+
"directory": "packages/vue-store"
1111
},
12+
"homepage": "https://tanstack.com/store",
1213
"funding": {
1314
"type": "github",
1415
"url": "https://github.com/sponsors/tannerlinsley"
1516
},
16-
"type": "module",
17-
"types": "dist/esm/index.d.ts",
18-
"main": "dist/cjs/index.cjs",
19-
"module": "dist/esm/index.js",
20-
"exports": {
21-
".": {
22-
"import": {
23-
"types": "./dist/esm/index.d.ts",
24-
"default": "./dist/esm/index.js"
25-
},
26-
"require": {
27-
"types": "./dist/cjs/index.d.cts",
28-
"default": "./dist/cjs/index.cjs"
29-
}
30-
},
31-
"./package.json": "./package.json"
32-
},
33-
"sideEffects": false,
17+
"keywords": [
18+
"store",
19+
"typescript",
20+
"vue"
21+
],
3422
"scripts": {
3523
"clean": "rimraf ./dist && rimraf ./coverage",
3624
"test:eslint": "eslint ./src ./tests",
@@ -50,6 +38,24 @@
5038
"test:build": "publint --strict",
5139
"build": "vite build"
5240
},
41+
"type": "module",
42+
"types": "dist/esm/index.d.ts",
43+
"main": "dist/cjs/index.cjs",
44+
"module": "dist/esm/index.js",
45+
"exports": {
46+
".": {
47+
"import": {
48+
"types": "./dist/esm/index.d.ts",
49+
"default": "./dist/esm/index.js"
50+
},
51+
"require": {
52+
"types": "./dist/cjs/index.d.cts",
53+
"default": "./dist/cjs/index.cjs"
54+
}
55+
},
56+
"./package.json": "./package.json"
57+
},
58+
"sideEffects": false,
5359
"files": [
5460
"dist",
5561
"src"

0 commit comments

Comments
 (0)