-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
275 additions
and
278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"type": "module", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Form marKup Language", | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,57 @@ | ||
{ | ||
"name": "@formkl/vue", | ||
"version": "0.1.0", | ||
"description": "A Vue adapter to generate usable Vue from component from Formkl syntax/schema", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
} | ||
}, | ||
"main": "./dist/index.cjs", | ||
"types": "./dist/types/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"typecheck": "vue-tsc --noEmit", | ||
"build": "rimraf ./dist && vite build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/imrim12/formkl.git", | ||
"directory": "packages/adapters/vue" | ||
}, | ||
"keywords": [ | ||
"formkl" | ||
], | ||
"author": "thecodeorigin", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/imrim12/formkl/issues" | ||
}, | ||
"homepage": "https://github.com/imrim12/formkl#readme", | ||
"dependencies": { | ||
"@formkl/shared": "workspace:*", | ||
"element-plus": "^2.2.16", | ||
"formkl": "workspace:*", | ||
"lodash": "^4.17.21", | ||
"vue": "^3.2.41" | ||
}, | ||
"devDependencies": { | ||
"@types/lodash": "^4.14.187", | ||
"@types/node": "^18.11.8", | ||
"@vitejs/plugin-vue": "^3.1.2", | ||
"@vitejs/plugin-vue-jsx": "^2.0.1", | ||
"@vitest/ui": "^0.24.5", | ||
"@vue/test-utils": "^2.2.10", | ||
"rimraf": "^3.0.2", | ||
"sass": "^1.55.0", | ||
"typescript": "^4.9.4", | ||
"vite": "^3.1.3", | ||
"vite-plugin-dts": "^1.6.6", | ||
"vitest": "^0.24.4", | ||
"vue-tsc": "^1.0.9" | ||
} | ||
} | ||
"name": "@formkl/vue", | ||
"version": "0.2.0", | ||
"description": "A Vue adapter to generate usable Vue from component from Formkl syntax/schema", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
} | ||
}, | ||
"main": "./dist/index.cjs", | ||
"types": "./dist/types/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"typecheck": "vue-tsc --noEmit", | ||
"build": "rimraf ./dist && vite build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/imrim12/formkl.git", | ||
"directory": "packages/adapters/vue" | ||
}, | ||
"keywords": [ | ||
"formkl" | ||
], | ||
"author": "thecodeorigin", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/imrim12/formkl/issues" | ||
}, | ||
"homepage": "https://github.com/imrim12/formkl#readme", | ||
"dependencies": { | ||
"@formkl/shared": "workspace:*", | ||
"element-plus": "^2.2.16", | ||
"formkl": "workspace:*", | ||
"lodash": "^4.17.21", | ||
"vue": "^3.2.41" | ||
}, | ||
"devDependencies": { | ||
"@types/lodash": "^4.14.187", | ||
"@types/node": "^18.11.8", | ||
"@vitejs/plugin-vue": "^3.1.2", | ||
"@vitejs/plugin-vue-jsx": "^2.0.1", | ||
"@vitest/ui": "^0.24.5", | ||
"@vue/test-utils": "^2.2.10", | ||
"rimraf": "^3.0.2", | ||
"sass": "^1.55.0", | ||
"typescript": "^4.9.4", | ||
"vite": "^3.1.3", | ||
"vite-plugin-dts": "^1.6.6", | ||
"vitest": "^0.24.4", | ||
"vue-tsc": "^1.0.9" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
{ | ||
"name": "@formkl/editor", | ||
"version": "0.1.0", | ||
"description": "A universal Editor for Formkl using web component API", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
} | ||
}, | ||
"main": "./dist/index.cjs", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"typecheck": "tsc --noEmit", | ||
"build": "npx unbuild" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]/imrim12/formkl.git", | ||
"directory": "packages/editor" | ||
}, | ||
"keywords": [ | ||
"formkl", | ||
"editor" | ||
], | ||
"author": "thecodeorigin", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/imrim12/formkl/issues" | ||
}, | ||
"homepage": "https://github.com/imrim12/formkl#readme", | ||
"dependencies": { | ||
"@codemirror/autocomplete": "^6.2.0", | ||
"@codemirror/commands": "^6.1.0", | ||
"@codemirror/lint": "^6.0.0", | ||
"@codemirror/state": "^6.1.2", | ||
"@codemirror/view": "^6.2.4", | ||
"@formkl/shared": "workspace:*", | ||
"codemirror": "^6.0.1", | ||
"formkl": "workspace:*" | ||
}, | ||
"devDependencies": { | ||
"@vitest/ui": "^0.24.5", | ||
"rimraf": "^3.0.2", | ||
"typescript": "^4.9.4", | ||
"unbuild": "^0.9.4", | ||
"vitest": "^0.24.4" | ||
} | ||
} | ||
"name": "@formkl/editor", | ||
"version": "0.2.0", | ||
"description": "A universal Editor for Formkl using web component API", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
} | ||
}, | ||
"main": "./dist/index.cjs", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"typecheck": "tsc --noEmit", | ||
"build": "npx unbuild" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]/imrim12/formkl.git", | ||
"directory": "packages/editor" | ||
}, | ||
"keywords": [ | ||
"formkl", | ||
"editor" | ||
], | ||
"author": "thecodeorigin", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/imrim12/formkl/issues" | ||
}, | ||
"homepage": "https://github.com/imrim12/formkl#readme", | ||
"dependencies": { | ||
"@codemirror/autocomplete": "^6.2.0", | ||
"@codemirror/commands": "^6.1.0", | ||
"@codemirror/lint": "^6.0.0", | ||
"@codemirror/state": "^6.1.2", | ||
"@codemirror/view": "^6.2.4", | ||
"@formkl/shared": "workspace:*", | ||
"codemirror": "^6.0.1", | ||
"formkl": "workspace:*" | ||
}, | ||
"devDependencies": { | ||
"@vitest/ui": "^0.24.5", | ||
"rimraf": "^3.0.2", | ||
"typescript": "^4.9.4", | ||
"unbuild": "^0.9.4", | ||
"vitest": "^0.24.4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
{ | ||
"name": "@formkl/elemento", | ||
"version": "0.1.0", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
} | ||
}, | ||
"main": "./dist/index.cjs", | ||
"style": "./dist/style.css", | ||
"types": "./dist/types/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"typecheck": "tsc --noEmit", | ||
"build": "vite build" | ||
}, | ||
"dependencies": { | ||
"@formkl/shared": "workspace:*", | ||
"axios": "^1.3.5", | ||
"element-plus": "^2.2.16" | ||
}, | ||
"devDependencies": { | ||
"@vitest/ui": "^0.24.5", | ||
"typescript": "^4.9.4", | ||
"unbuild": "^0.9.4", | ||
"vite": "^3.1.3", | ||
"vite-plugin-dts": "^1.6.6", | ||
"vitest": "^0.24.4", | ||
"vue": "^3.2.41", | ||
"vue-tsc": "^1.0.9" | ||
} | ||
} | ||
"name": "@formkl/elemento", | ||
"version": "0.2.0", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
} | ||
}, | ||
"main": "./dist/index.cjs", | ||
"style": "./dist/style.css", | ||
"types": "./dist/types/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"typecheck": "tsc --noEmit", | ||
"build": "vite build" | ||
}, | ||
"dependencies": { | ||
"@formkl/shared": "workspace:*", | ||
"axios": "^1.3.5", | ||
"element-plus": "^2.2.16" | ||
}, | ||
"devDependencies": { | ||
"@vitest/ui": "^0.24.5", | ||
"typescript": "^4.9.4", | ||
"unbuild": "^0.9.4", | ||
"vite": "^3.1.3", | ||
"vite-plugin-dts": "^1.6.6", | ||
"vitest": "^0.24.4", | ||
"vue": "^3.2.41", | ||
"vue-tsc": "^1.0.9" | ||
} | ||
} |
Oops, something went wrong.
573bb70
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
formkl-sandbox – ./
formkl-sandbox-bittermeatball.vercel.app
formkl-sandbox.vercel.app
formkl-sandbox-git-main-bittermeatball.vercel.app
sandbox.formkl.org
573bb70
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
formkl-docs – ./
formkl.vercel.app
formkl-docs-bittermeatball.vercel.app
formkl.org
formkl-docs-git-main-bittermeatball.vercel.app