mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* add tooljet cli * remove yarn * add integration command * remove lic * add plugin command * feat: add plugin create cmd * add path * add create, delete, install cmds * auto-generated readme * use raw hygen runner inside cli * add auto gen doc * add rimraf * add correct plugin name for tree * remove oclif plugins * update version - npm * remove operations.ts * add root path
26 lines
No EOL
569 B
Perl
26 lines
No EOL
569 B
Perl
---
|
|
to: <%= plugins_path %>/packages/<%= name %>/package.json
|
|
---
|
|
{
|
|
"name": "<%= name %>",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"build": "tsc -b",
|
|
"clean": "rimraf ./dist && rimraf tsconfig.tsbuildinfo"
|
|
},
|
|
"homepage": "https://github.com/tooljet/tooljet#readme",
|
|
"dependencies": {
|
|
"common": "file:../common",
|
|
"react": "^17.0.2"
|
|
}
|
|
} |