Skip to content

Commit

Permalink
update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
nksaraf committed Aug 26, 2024
1 parent f0bbfaf commit b19d342
Show file tree
Hide file tree
Showing 12 changed files with 59 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/doc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
"main": "deno_doc.cjs",
"version": "0.1.0",
"repository": {
"url": "https://github.com/nksaraf/vinxi.git"
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/doc"
}
}
6 changes: 6 additions & 0 deletions packages/vinxi-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"name": "@vinxi/devtools",
"version": "0.2.0",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/vinxi-devtools"
},
"module": "index.js",
"scripts": {
"dev": "node dev.js --dev --force",
Expand Down
5 changes: 5 additions & 0 deletions packages/vinxi-directives/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
"*.d.ts",
"plugins"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/vinxi-directives"
},
"scripts": {
"test": "vitest --run"
},
Expand Down
5 changes: 5 additions & 0 deletions packages/vinxi-doc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"module": "doc.js",
"type": "module",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/vinxi-doc"
},
"exports": {
".": {
"import": "./doc.js",
Expand Down
6 changes: 5 additions & 1 deletion packages/vinxi-mdx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@
},
"description": "Vinxi plugin for MDX",
"license": "MIT",
"repository": "https://github.com/nksaraf/vinxi/blob/main/packages/vinxi-mdx",
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/vinxi-mdx"
},
"keywords": [
"vinxi",
"mdx"
Expand Down
5 changes: 5 additions & 0 deletions packages/vinxi-openapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "0.2.0",
"type": "module",
"module": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/vinxi-openapi"
},
"dependencies": {
"@vinxi/doc": "workspace:0.1.1",
"openapi-types": "^12.1.3"
Expand Down
5 changes: 5 additions & 0 deletions packages/vinxi-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"invariant.js",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/vinxi-react"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
Expand Down
5 changes: 5 additions & 0 deletions packages/vinxi-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
"path-to-regexp": "^6.2.1",
"vite-tsconfig-paths": "^4.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/vinxi-router"
},
"exports": {
"./api": "./api.js",
"./static": "./static.js",
Expand Down
5 changes: 5 additions & 0 deletions packages/vinxi-server-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
"*.js",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/vinxi-server-components"
},
"types": "./index.d.ts",
"exports": {
".": "./index.js",
Expand Down
5 changes: 5 additions & 0 deletions packages/vinxi-server-functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
"*.js",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/vinxi-server-functions"
},
"types": "./index.d.ts",
"exports": {
".": "./index.js",
Expand Down
5 changes: 5 additions & 0 deletions packages/vinxi-solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
"./lib/*": "./lib/*.js",
"./runtime/*": "./runtime/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/vinxi-solid"
},
"typesVersions": {
"*": {
".": [
Expand Down
5 changes: 5 additions & 0 deletions packages/vinxi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
"dist/types",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nksaraf/vinxi.git",
"directory": "packages/vinxi"
},
"scripts": {
"types": "npm run tsc",
"tsc": "rm -rf dist/types && tsc; cp -r types dist/types/types; cp -r lib/*.d.ts dist/types/lib/",
Expand Down

0 comments on commit b19d342

Please sign in to comment.