mirror of
https://github.com/penpot/penpot.git
synced 2026-09-22 04:15:05 -04:00
24 lines
1.1 KiB
JSON
24 lines
1.1 KiB
JSON
{
|
|
"name": "plugin-api-test-suite",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build --emptyOutDir && pnpm run build:headless && pnpm run build:tests",
|
|
"build:headless": "vite build --config vite.config.headless.ts",
|
|
"build:tests": "vite build --config vite.config.tests.ts",
|
|
"watch": "concurrently --kill-others --names app,tests \"vite build --watch --mode development\" \"vite build --watch --mode development --config vite.config.tests.ts\"",
|
|
"serve": "vite preview",
|
|
"init": "concurrently --kill-others --names build,serve \"pnpm run watch\" \"pnpm run serve\"",
|
|
"lint": "eslint .",
|
|
"gen:api": "tsx tools/gen-api-surface.ts",
|
|
"test:ci": "pnpm run build:headless && tsx ci/run-ci.ts",
|
|
"test:ci:mocked": "pnpm run build:headless && MOCK_BACKEND=1 tsx ci/run-ci.ts"
|
|
},
|
|
"devDependencies": {
|
|
"playwright": "^1.62.1"
|
|
},
|
|
"packageManager": "pnpm@12.5.1+sha512.e3f305bc784a2bc89f5ad3b6138889470fae8d2af5f36b61216ec91c2c3d64089775f9de38aac331044ea40f245cb0d5666392dfdf65824e1907ef6a2c62de5f"
|
|
}
|