Skip to content

Commit 0bf3a3e

Browse files
authored
Merge pull request #23 from zenstackhq/dev
chore: add export without export package.json so that zenstack CLI wouldn't check the version of it
2 parents 4a6420c + 1ae9438 commit 0bf3a3e

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zenstackhq/proxy",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"description": "A CLI tool to run an Express server that proxies CRUD requests to a ZenStack backend",
55
"main": "index.js",
66
"publishConfig": {
@@ -12,7 +12,9 @@
1212
"url": "https://github.com/zenstackhq/proxy"
1313
},
1414
"bin": {
15-
"zenstack-proxy": "./bin/cli.js"
15+
"zenstack-proxy": "./bin/cli.js",
16+
"zenstack-studio": "./bin/cli.js",
17+
"zen-studio": "./bin/cli.js"
1618
},
1719
"scripts": {
1820
"clean": "rimraf dist",
@@ -44,5 +46,11 @@
4446
"copyfiles": "^2.4.1",
4547
"rimraf": "^4.0.0",
4648
"typescript": "^5.0.0"
49+
},
50+
"exports": {
51+
".": {
52+
"import": "./index.js",
53+
"require": "./index.js"
54+
}
4755
}
4856
}

0 commit comments

Comments
 (0)