Skip to content

Commit c44372b

Browse files
committed
Structure package.json by nodejs property ordering conventions.
1 parent 78b1a78 commit c44372b

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,23 @@
22
"name": "@restatedev/restate-sdk",
33
"version": "0.7.0",
44
"description": "Typescript SDK for Restate",
5-
"engines": {
6-
"node": ">= 18"
7-
},
5+
"author": "Restate Developers",
6+
"license": "MIT",
7+
"email": "[email protected]",
8+
"homepage": "https://github.com/restatedev/sdk-typescript#readme",
89
"repository": {
910
"type": "git",
1011
"url": "git+https://github.com/restatedev/sdk-typescript.git"
1112
},
12-
"release-it": {
13-
"git": {
14-
"pushRepo": "https://github.com/restatedev/sdk-typescript.git"
15-
},
16-
"github": {
17-
"release": true
18-
},
19-
"npm": {
20-
"publish": false
21-
}
22-
},
23-
"publishConfig": {
24-
"@restatedev:registry": "https://registry.npmjs.org"
13+
"bugs": {
14+
"url": "https://github.com/restatedev/sdk-typescript/issues"
2515
},
2616
"type": "commonjs",
2717
"main": "dist/public_api.js",
2818
"types": "dist/public_api.d.ts",
29-
"author": "Restate Developers",
30-
"license": "MIT",
31-
"email": "[email protected]",
19+
"files": [
20+
"dist"
21+
],
3222
"scripts": {
3323
"proto": "npx buf mod update && npx buf generate",
3424
"build": "tsc --noEmitOnError",
@@ -43,9 +33,6 @@
4333
"handlerexample": "RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only ./examples/handler_example.ts",
4434
"expressexample": "RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only ./examples/embedded_example.ts"
4535
},
46-
"files": [
47-
"dist"
48-
],
4936
"dependencies": {
5037
"protobufjs": "^7.2.2",
5138
"ts-proto": "^1.140.0"
@@ -65,12 +52,25 @@
6552
"typescript": "^4.9.5",
6653
"express": "*"
6754
},
68-
"bugs": {
69-
"url": "https://github.com/restatedev/sdk-typescript/issues"
55+
"engines": {
56+
"node": ">= 18"
7057
},
71-
"homepage": "https://github.com/restatedev/sdk-typescript#readme",
7258
"directories": {
7359
"example": "examples",
7460
"test": "test"
61+
},
62+
"publishConfig": {
63+
"@restatedev:registry": "https://registry.npmjs.org"
64+
},
65+
"release-it": {
66+
"git": {
67+
"pushRepo": "https://github.com/restatedev/sdk-typescript.git"
68+
},
69+
"github": {
70+
"release": true
71+
},
72+
"npm": {
73+
"publish": false
74+
}
7575
}
7676
}

0 commit comments

Comments
 (0)