mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-08-04 15:18:17 +00:00

A bug in 3.0.x versions was causing the --plugin setting to be set in order to let prettier know about svelte. This is now fixed.
51 lines
1.7 KiB
JSON
51 lines
1.7 KiB
JSON
{
|
|
"name": "iron-svelte-client",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"pre-build": "node ./pre-build.js",
|
|
"pre-build-no-wasm": "node ./pre-build.js no-wasm",
|
|
"dev": "vite dev",
|
|
"dev-all": "npm run pre-build && vite dev --host",
|
|
"dev-no-wasm": "npm run pre-build-no-wasm && vite dev --host",
|
|
"build": "npm run pre-build && vite build",
|
|
"build-no-wasm": "npm run pre-build-no-wasm && vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"lint": "npm run lint:prettier && npm run lint:eslint",
|
|
"lint:prettier": "prettier --check .",
|
|
"lint:eslint": "eslint src/**",
|
|
"format": "prettier --write ."
|
|
},
|
|
"devDependencies": {
|
|
"beercss": "^2.3.0",
|
|
"cross-env": "7.0.3",
|
|
"eslint": "^8.16.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-html": "^7.1.0",
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
"eslint-plugin-svelte": "^2.34.1",
|
|
"fs-extra": "^11.1.0",
|
|
"guid-typescript": "^1.0.9",
|
|
"@material-design-icons/font": "^0.14.2",
|
|
"prettier": "^3.1.0",
|
|
"prettier-plugin-svelte": "^3.1.0",
|
|
"@rollup/plugin-replace": "^5.0.1",
|
|
"rxjs": "^6.6.7",
|
|
"svelte": "^3.44.0",
|
|
"svelte-check": "^2.7.1",
|
|
"@sveltejs/adapter-auto": "^2.0.0",
|
|
"@sveltejs/adapter-static": "^2.0.0",
|
|
"@sveltejs/kit": "^1.27.0",
|
|
"svelte-preprocess": "^4.10.6",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.7.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.27.0",
|
|
"@typescript-eslint/parser": "^5.27.0",
|
|
"vite": "^4.0.0",
|
|
"vite-plugin-top-level-await": "^1.2.2",
|
|
"vite-plugin-wasm": "^3.1.0"
|
|
},
|
|
"type": "module"
|
|
}
|