ToolJet/plugins/_templates/plugin/new/packagejson.ejs.t
Gandharv 639161f192
Add namespace @tooljet-plugins (#1904)
* add namespace @tooljet-plugins

* add namespace for common package

* lerna -> dev deps

* npx lerna

* pkg-lock
2022-01-23 14:43:52 +05:30

26 lines
No EOL
586 B
Perl

---
to: <%= plugins_path %>/packages/<%= name %>/package.json
---
{
"name": "@tooljet-plugins/<%= 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"
}
}