feat: Add permissions package (no-changelog) (#7650)

Github issue / Community forum post (link here to close automatically):
This commit is contained in:
Val
2023-11-08 15:42:40 +00:00
committed by GitHub
parent 0346b211a7
commit 0468ded0db
10 changed files with 257 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
"name": "@n8n/permissions",
"version": "0.0.1",
"scripts": {
"clean": "rimraf dist .turbo",
"dev": "pnpm watch",
"typecheck": "tsc",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write . --ignore-path ../../../.prettierignore",
"lint": "eslint . --quiet",
"lintfix": "eslint . --fix",
"watch": "tsc -p tsconfig.build.json --watch",
"test": "jest",
"test:dev": "jest --watch"
},
"main": "dist/index.js",
"module": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
]
}