ToolJet/plugins/_templates/plugin/new/packagejson.ejs.t

26 lines
603 B
Perl
Raw Normal View History

---
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": {
"@tooljet-plugins/common": "file:../common",
"react": "^17.0.2"
}
}