mirror of
https://github.com/penpot/penpot.git
synced 2026-02-24 02:36:45 -05:00
17 lines
602 B
JSON
17 lines
602 B
JSON
{
|
|
"name": "table-plugin",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "ng build table-plugin && pnpm run build:plugin",
|
|
"build:dev": "ng build table-plugin --configuration development",
|
|
"build:plugin": "node ../../tools/scripts/build-plugin.mjs --plugin=table-plugin",
|
|
"watch": "node ../../tools/scripts/build-plugin.mjs --plugin=table-plugin --watch",
|
|
"serve": "ng serve table-plugin",
|
|
"init": "concurrently --kill-others --names plugin,serve \"pnpm run watch\" \"pnpm run serve\"",
|
|
"lint": "eslint .",
|
|
"test": "vitest"
|
|
}
|
|
}
|