2024-01-29 06:39:21 -05:00
|
|
|
{
|
|
|
|
"name": "penpot-plugins",
|
2024-03-27 07:57:02 -05:00
|
|
|
"version": "0.1.0",
|
2024-05-07 03:28:40 -05:00
|
|
|
"type": "module",
|
2024-01-29 06:39:21 -05:00
|
|
|
"license": "MIT",
|
2024-02-01 08:08:51 -05:00
|
|
|
"scripts": {
|
2024-05-23 09:22:06 -05:00
|
|
|
"start": "npm run start:app:runtime",
|
|
|
|
"start:app:runtime": "concurrently --kill-others --names build,server \"npx nx run plugins-runtime:build --watch --mode development\" \"npx nx run plugins-runtime:preview\"",
|
|
|
|
"start:app:styles-example": "npx nx run example-styles:serve --host 0.0.0.0 --port 4201",
|
|
|
|
"start:plugin:all": "concurrently --kill-others \"npm:start:plugin:*(!all)\"",
|
2024-05-30 08:02:56 -05:00
|
|
|
"start:plugin:poc-state": "npx nx run poc-state-plugin:init",
|
|
|
|
"start:plugin:contrast": "npx nx run contrast-plugin:init",
|
|
|
|
"start:plugin:icons": "npx nx run icons-plugin:init",
|
|
|
|
"start:plugin:loremipsum": "npx nx run lorem-ipsum-plugin:init",
|
2024-05-23 09:22:06 -05:00
|
|
|
"start:plugin:palette": "npx nx run create-palette-plugin:build --watch & npx nx run create-palette-plugin:preview",
|
2024-05-30 08:02:56 -05:00
|
|
|
"start:plugin:table": "npx nx run table-plugin:init",
|
2024-05-31 02:21:08 -05:00
|
|
|
"start:plugin:renamelayers": "npx nx run rename-layers-plugin:init",
|
2024-02-05 08:24:32 -05:00
|
|
|
"build": "npx nx build plugins-runtime --emptyOutDir=true",
|
|
|
|
"lint": "nx run-many --all --target=lint --parallel",
|
|
|
|
"lint:affected": "npx nx affected --target=lint",
|
2024-05-08 08:32:42 -05:00
|
|
|
"test": "nx run-many -t test -p plugins-runtime lorem-ipsum-plugin",
|
2024-03-27 07:57:02 -05:00
|
|
|
"publish": "nx run-many -t publish -p plugins-styles plugin-types --parallel=false --",
|
|
|
|
"registry": "nx local-registry",
|
2024-04-17 07:39:24 -05:00
|
|
|
"prepare": "husky",
|
|
|
|
"create:api-docs": "npx typedoc --tsconfig libs/plugins-runtime/tsconfig.lib.json --options typedoc.json"
|
2024-02-01 08:08:51 -05:00
|
|
|
},
|
2024-01-29 06:39:21 -05:00
|
|
|
"private": true,
|
|
|
|
"devDependencies": {
|
2024-05-13 03:55:05 -05:00
|
|
|
"@angular-devkit/build-angular": "~17.3.0",
|
|
|
|
"@angular-devkit/core": "~17.3.0",
|
|
|
|
"@angular-devkit/schematics": "~17.3.0",
|
2024-04-23 05:33:38 -05:00
|
|
|
"@angular-eslint/eslint-plugin": "~17.0.0",
|
|
|
|
"@angular-eslint/eslint-plugin-template": "~17.0.0",
|
|
|
|
"@angular-eslint/template-parser": "~17.0.0",
|
|
|
|
"@angular/cli": "~17.1.0",
|
2024-05-13 03:55:05 -05:00
|
|
|
"@angular/compiler-cli": "~17.3.0",
|
|
|
|
"@angular/language-service": "~17.3.0",
|
2024-02-05 08:24:32 -05:00
|
|
|
"@commitlint/cli": "^18.6.0",
|
|
|
|
"@commitlint/config-conventional": "^18.6.0",
|
2024-05-07 03:28:40 -05:00
|
|
|
"@eslint/eslintrc": "^2.1.1",
|
2024-02-22 08:40:18 -05:00
|
|
|
"@fastify/cors": "^9.0.1",
|
2024-04-23 05:33:38 -05:00
|
|
|
"@nx/angular": "^18.0.2",
|
2024-02-22 08:40:18 -05:00
|
|
|
"@nx/esbuild": "18.0.2",
|
2024-02-06 03:07:17 -05:00
|
|
|
"@nx/eslint": "18.0.2",
|
|
|
|
"@nx/eslint-plugin": "18.0.2",
|
|
|
|
"@nx/js": "18.0.2",
|
2024-02-22 08:40:18 -05:00
|
|
|
"@nx/node": "^18.0.2",
|
2024-02-06 03:07:17 -05:00
|
|
|
"@nx/vite": "18.0.2",
|
|
|
|
"@nx/web": "18.0.2",
|
2024-05-13 03:55:05 -05:00
|
|
|
"@schematics/angular": "~17.3.0",
|
2024-02-01 08:08:51 -05:00
|
|
|
"@swc-node/register": "~1.6.7",
|
|
|
|
"@swc/core": "~1.3.85",
|
|
|
|
"@swc/helpers": "~0.5.2",
|
2024-05-08 05:21:39 -05:00
|
|
|
"@types/feather-icons": "^4.29.4",
|
2024-02-01 08:08:51 -05:00
|
|
|
"@types/node": "20.11.16",
|
2024-02-06 03:07:17 -05:00
|
|
|
"@typescript-eslint/eslint-plugin": "6.21.0",
|
2024-03-11 08:57:11 -05:00
|
|
|
"@typescript-eslint/parser": "^6.21.0",
|
2024-02-06 03:07:17 -05:00
|
|
|
"@vitest/coverage-v8": "1.2.2",
|
|
|
|
"@vitest/ui": "1.2.2",
|
2024-05-20 01:27:27 -05:00
|
|
|
"concurrently": "^8.2.2",
|
2024-02-22 08:40:18 -05:00
|
|
|
"esbuild": "^0.19.2",
|
2024-02-01 08:08:51 -05:00
|
|
|
"eslint": "~8.48.0",
|
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2024-03-11 08:57:11 -05:00
|
|
|
"eslint-plugin-deprecation": "^2.0.0",
|
2024-03-27 07:57:02 -05:00
|
|
|
"fs-extra": "^11.2.0",
|
2024-05-07 03:28:40 -05:00
|
|
|
"globals": "^15.1.0",
|
2024-03-05 05:36:56 -05:00
|
|
|
"happy-dom": "^13.6.2",
|
2024-02-05 08:24:32 -05:00
|
|
|
"husky": "^9.0.10",
|
2024-02-01 08:08:51 -05:00
|
|
|
"jsdom": "~22.1.0",
|
2024-04-23 05:33:38 -05:00
|
|
|
"jsonc-eslint-parser": "^2.1.0",
|
2024-02-06 03:07:17 -05:00
|
|
|
"nx": "18.0.2",
|
2024-02-01 08:08:51 -05:00
|
|
|
"prettier": "^2.6.2",
|
|
|
|
"swc-loader": "0.1.15",
|
2024-02-22 08:40:18 -05:00
|
|
|
"ts-node": "10.9.1",
|
2024-04-17 07:39:24 -05:00
|
|
|
"typedoc": "^0.25.13",
|
2024-02-01 08:08:51 -05:00
|
|
|
"typescript": "~5.2.2",
|
2024-03-27 07:57:02 -05:00
|
|
|
"verdaccio": "^5.0.4",
|
2024-02-01 08:08:51 -05:00
|
|
|
"vite": "^5.0.0",
|
2024-05-17 05:52:42 -05:00
|
|
|
"vite-plugin-checker": "^0.6.4",
|
2024-02-01 08:08:51 -05:00
|
|
|
"vite-plugin-dts": "~2.3.0",
|
2024-02-06 03:07:17 -05:00
|
|
|
"vitest": "1.2.2"
|
2024-01-29 06:39:21 -05:00
|
|
|
},
|
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
2024-02-01 08:08:51 -05:00
|
|
|
],
|
|
|
|
"dependencies": {
|
2024-05-13 03:55:05 -05:00
|
|
|
"@angular/animations": "~17.3.0",
|
|
|
|
"@angular/common": "~17.3.0",
|
|
|
|
"@angular/compiler": "~17.3.0",
|
|
|
|
"@angular/core": "~17.3.0",
|
|
|
|
"@angular/forms": "~17.3.0",
|
|
|
|
"@angular/platform-browser": "~17.3.0",
|
|
|
|
"@angular/platform-browser-dynamic": "~17.3.0",
|
|
|
|
"@angular/router": "~17.3.0",
|
2024-02-22 08:40:18 -05:00
|
|
|
"@fastify/autoload": "~5.7.1",
|
|
|
|
"@fastify/sensible": "~5.2.0",
|
2024-03-11 08:57:11 -05:00
|
|
|
"@types/uuid": "^9.0.8",
|
2024-02-22 08:40:18 -05:00
|
|
|
"axios": "^1.6.0",
|
|
|
|
"fastify": "~4.13.0",
|
|
|
|
"fastify-plugin": "~4.5.0",
|
2024-05-08 05:21:39 -05:00
|
|
|
"feather-icons": "^4.29.2",
|
2024-04-23 05:33:38 -05:00
|
|
|
"rxjs": "~7.8.0",
|
2024-02-06 06:16:28 -05:00
|
|
|
"ses": "^1.1.0",
|
|
|
|
"tslib": "^2.3.0",
|
2024-02-28 06:54:37 -05:00
|
|
|
"uuid": "^9.0.1",
|
2024-04-23 05:33:38 -05:00
|
|
|
"zod": "^3.22.4",
|
|
|
|
"zone.js": "~0.14.3"
|
2024-03-27 07:57:02 -05:00
|
|
|
},
|
|
|
|
"nx": {
|
|
|
|
"includedScripts": []
|
2024-02-01 08:08:51 -05:00
|
|
|
}
|
2024-01-29 06:39:21 -05:00
|
|
|
}
|