zenstack 0.6.0-pre.4 → 0.6.0-pre.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/asset/logo-256-bg.png +0 -0
- package/asset/logo-dark-256.png +0 -0
- package/asset/logo-light-256.png +0 -0
- package/bin/post-install.js +24 -0
- package/cli/index.js +6532 -0
- package/extension.js +39 -0
- package/language-server/main.js +6436 -0
- package/package.json +6 -8
- package/plugins/policy-guard/index.js +4289 -0
- package/plugins/prisma/index.js +3740 -0
- package/plugins/react-hooks/index.js +4318 -0
- package/plugins/trpc/index.js +5386 -0
- package/plugins/zod/index.js +4808 -0
- package/res/package.template.json +9 -0
- package/res/prism-zmodel.js +22 -0
- package/res/stdlib.zmodel +218 -0
- package/res/tsconfig.template.json +17 -0
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publisher": "zenstack",
|
|
4
4
|
"displayName": "ZenStack Language Tools",
|
|
5
5
|
"description": "A toolkit for building secure CRUD apps with Next.js + Typescript",
|
|
6
|
-
"version": "0.6.0-pre.
|
|
6
|
+
"version": "0.6.0-pre.5",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "ZenStack Team"
|
|
9
9
|
},
|
|
@@ -60,9 +60,6 @@
|
|
|
60
60
|
"activationEvents": [
|
|
61
61
|
"onLanguage:zmodel"
|
|
62
62
|
],
|
|
63
|
-
"files": [
|
|
64
|
-
"bundle"
|
|
65
|
-
],
|
|
66
63
|
"bin": {
|
|
67
64
|
"zenstack": "bin/cli"
|
|
68
65
|
},
|
|
@@ -90,9 +87,9 @@
|
|
|
90
87
|
"vscode-languageserver-textdocument": "^1.0.7",
|
|
91
88
|
"vscode-uri": "^3.0.6",
|
|
92
89
|
"zod": "^3.19.1",
|
|
90
|
+
"@zenstackhq/language": "0.6.0-pre.2",
|
|
93
91
|
"@zenstackhq/runtime": "0.6.0-pre.2",
|
|
94
|
-
"@zenstackhq/sdk": "0.6.0-pre.2"
|
|
95
|
-
"@zenstackhq/language": "0.6.0-pre.2"
|
|
92
|
+
"@zenstackhq/sdk": "0.6.0-pre.2"
|
|
96
93
|
},
|
|
97
94
|
"devDependencies": {
|
|
98
95
|
"@prisma/generator-helper": "^4.7.1",
|
|
@@ -127,12 +124,13 @@
|
|
|
127
124
|
"vscode:package": "vsce package --no-dependencies",
|
|
128
125
|
"clean": "rimraf bundle",
|
|
129
126
|
"build": "pnpm lint && pnpm bundle && tsc --emitDeclarationOnly --declaration ",
|
|
130
|
-
"bundle": "pnpm clean && node build/bundle.js",
|
|
127
|
+
"bundle": "pnpm clean && node build/bundle.js --minify",
|
|
131
128
|
"watch": "node build/bundle.js --watch",
|
|
132
129
|
"ts:watch": "tsc --watch --noEmit",
|
|
133
130
|
"tsc-alias:watch": "tsc-alias --watch",
|
|
134
131
|
"lint": "eslint src --ext ts",
|
|
135
132
|
"test": "jest",
|
|
136
|
-
"publish-dev": "pnpm publish --tag dev"
|
|
133
|
+
"publish-dev": "pnpm publish --tag dev",
|
|
134
|
+
"postinstall": "node bin/post-install.js"
|
|
137
135
|
}
|
|
138
136
|
}
|