Skip to content

Commit acfab84

Browse files
committed
chore: update package.json information
1 parent 5933f3e commit acfab84

File tree

1 file changed

+21
-14
lines changed

1 file changed

+21
-14
lines changed

package.json

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,13 @@
11
{
2-
"name": "protogenerate",
2+
"name": "@protogenjs/protogen",
33
"version": "0.1.1-alpha.1",
44
"description": "The protogen package makes it easy to write protoc plugins in JavaScript/Typescript",
5-
"main": "lib/index.js",
6-
"types": "lib/index.d.ts",
7-
"scripts": {
8-
"lint": "prettier --check src/**.ts test/**.ts",
9-
"clean": "rm -rf lib",
10-
"build": "tsc",
11-
"test": "mkdir -p testout && chmod +x lib/test/generator.js && chmod +x lib/test/imports/generator.js && mocha lib/test/*.spec.js lib/test/**/*.spec.js --exit",
12-
"prepack": "npm run build",
13-
"docs": "typedoc src/index.ts"
14-
},
15-
"files": [
16-
"lib"
17-
],
5+
"author": "fischor <fischor.sh@gmail.com>",
186
"license": "ISC",
7+
"homepage": "https://github.com/fischor/protogen-javascript",
8+
"repository": "github:fischor/protogen-javascript",
9+
"main": "lib/src/index.js",
10+
"types": "lib/src/index.d.ts",
1911
"dependencies": {
2012
"google-protobuf": "^3.17.3"
2113
},
@@ -27,5 +19,20 @@
2719
"prettier": "^2.3.2",
2820
"typedoc": "^0.21.5",
2921
"typescript": "^4.3.5"
22+
},
23+
"files": [
24+
"lib/src/",
25+
"README.md"
26+
],
27+
"publishConfig": {
28+
"access": "public"
29+
},
30+
"scripts": {
31+
"lint": "prettier --check src/**.ts test/**.ts",
32+
"clean": "rm -rf lib",
33+
"build": "tsc",
34+
"test": "mkdir -p testout && chmod +x lib/test/generator.js && chmod +x lib/test/imports/generator.js && mocha lib/test/*.spec.js lib/test/**/*.spec.js --exit",
35+
"prepack": "npm run clean && npm run build",
36+
"docs": "typedoc src/index.ts"
3037
}
3138
}

0 commit comments

Comments
 (0)