fix(publish): set the private to false and config the registry (#8)

pull/29/head
Minghe 2022-07-27 22:16:00 +08:00 committed by GitHub
parent d9858558cb
commit 7166554bf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@honojs/graphql-server", "name": "@honojs/graphql-server",
"version": "0.0.1", "version": "0.0.3",
"repository": "git@github.com:honojs/grahql-server.git", "repository": "git@github.com:honojs/grahql-server.git",
"author": "Minghe Huang <h.minghe@gmail.com>", "author": "Minghe Huang <h.minghe@gmail.com>",
"main": "dist/index.js", "main": "dist/index.js",
@ -9,6 +9,11 @@
"dist" "dist"
], ],
"license": "MIT", "license": "MIT",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"test:deno": "deno test deno_test", "test:deno": "deno test deno_test",
@ -33,4 +38,4 @@
"ts-jest": "^28.0.5", "ts-jest": "^28.0.5",
"typescript": "^4.7.4" "typescript": "^4.7.4"
} }
} }