2023-09-06 11:46:07 +03:00
|
|
|
{
|
2024-06-26 19:01:09 +03:00
|
|
|
"name": "@gitbutler/app",
|
2023-09-06 11:46:07 +03:00
|
|
|
"private": true,
|
|
|
|
"version": "0.0.0",
|
|
|
|
"type": "module",
|
2024-06-06 17:03:13 +03:00
|
|
|
"engines": {
|
2024-06-07 15:56:37 +03:00
|
|
|
"node": ">=20.11"
|
2024-06-06 17:03:13 +03:00
|
|
|
},
|
2024-06-18 13:16:02 +03:00
|
|
|
"packageManager": "pnpm@9.2.0",
|
2023-09-06 11:46:07 +03:00
|
|
|
"scripts": {
|
2024-07-01 22:07:07 +03:00
|
|
|
"dev": "vite --clearScreen false --debug hmr",
|
2023-09-06 11:46:07 +03:00
|
|
|
"test": "vitest run --mode development",
|
2024-03-15 02:03:55 +03:00
|
|
|
"test:watch": "vitest --watch --mode development",
|
2024-05-04 20:29:50 +03:00
|
|
|
"test:e2e": "playwright test -c ./playwright.config.ts",
|
|
|
|
"test:e2e:watch": "playwright test -c ./playwright.config.ts --ui",
|
2024-05-05 19:33:40 +03:00
|
|
|
"test:e2e:run": "vite dev --mode testing",
|
2023-09-06 11:46:07 +03:00
|
|
|
"build": "vite build",
|
|
|
|
"check": "svelte-check --tsconfig ./tsconfig.json",
|
|
|
|
"check:watch": "pnpm check --watch",
|
|
|
|
"tauri": "tauri",
|
2024-06-27 15:26:56 +03:00
|
|
|
"prepare": "svelte-kit sync"
|
2023-09-06 11:46:07 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@codemirror/lang-cpp": "^6.0.2",
|
|
|
|
"@codemirror/lang-css": "^6.2.1",
|
2024-04-15 18:56:46 +03:00
|
|
|
"@codemirror/lang-html": "^6.4.9",
|
2023-09-06 11:46:07 +03:00
|
|
|
"@codemirror/lang-java": "^6.0.1",
|
2024-03-01 19:15:11 +03:00
|
|
|
"@codemirror/lang-javascript": "^6.2.2",
|
2023-09-06 11:46:07 +03:00
|
|
|
"@codemirror/lang-json": "^6.0.1",
|
2024-04-15 18:56:46 +03:00
|
|
|
"@codemirror/lang-markdown": "^6.2.5",
|
2023-09-06 11:46:07 +03:00
|
|
|
"@codemirror/lang-php": "^6.0.1",
|
2024-05-13 01:11:09 +03:00
|
|
|
"@codemirror/lang-python": "^6.1.6",
|
2023-09-06 11:46:07 +03:00
|
|
|
"@codemirror/lang-rust": "^6.0.1",
|
2024-01-19 20:57:02 +03:00
|
|
|
"@codemirror/lang-vue": "^0.1.3",
|
|
|
|
"@codemirror/lang-wast": "^6.0.2",
|
2024-03-27 21:02:30 +03:00
|
|
|
"@codemirror/lang-xml": "^6.1.0",
|
2024-06-03 18:44:10 +03:00
|
|
|
"@codemirror/language": "^6.10.2",
|
2024-04-08 18:20:56 +03:00
|
|
|
"@codemirror/legacy-modes": "^6.4.0",
|
2024-03-01 19:15:11 +03:00
|
|
|
"@codemirror/state": "^6.4.1",
|
2024-04-15 18:56:46 +03:00
|
|
|
"@codemirror/view": "^6.26.3",
|
2024-06-27 12:39:48 +03:00
|
|
|
"@gitbutler/ui": "workspace:*",
|
2024-01-19 20:12:29 +03:00
|
|
|
"@lezer/common": "^1.2.1",
|
2023-12-11 18:07:50 +03:00
|
|
|
"@lezer/highlight": "^1.2.0",
|
2024-05-13 00:53:58 +03:00
|
|
|
"@octokit/rest": "^20.1.1",
|
2024-05-27 18:18:55 +03:00
|
|
|
"@playwright/test": "^1.44.1",
|
2023-09-06 11:46:07 +03:00
|
|
|
"@replit/codemirror-lang-svelte": "^6.0.0",
|
2024-06-17 17:27:51 +03:00
|
|
|
"@sentry/sveltekit": "^8.9.2",
|
2024-06-24 19:23:12 +03:00
|
|
|
"@sentry/vite-plugin": "^2.20.0",
|
2024-06-17 17:27:51 +03:00
|
|
|
"@sveltejs/adapter-static": "^3.0.1",
|
|
|
|
"@sveltejs/kit": "^2.5.10",
|
|
|
|
"@sveltejs/vite-plugin-svelte": "^3.1.1",
|
2024-07-02 10:48:47 +03:00
|
|
|
"@tauri-apps/api": "^1.6.0",
|
2024-01-22 18:38:11 +03:00
|
|
|
"@types/crypto-js": "^4.2.2",
|
2024-05-13 01:11:09 +03:00
|
|
|
"@types/diff": "^5.2.1",
|
2023-11-13 18:11:36 +03:00
|
|
|
"@types/diff-match-patch": "^1.0.36",
|
2024-06-24 22:18:28 +03:00
|
|
|
"@types/git-url-parse": "^9.0.3",
|
2024-01-19 20:09:37 +03:00
|
|
|
"@types/lscache": "^1.3.4",
|
2023-10-02 18:11:20 +03:00
|
|
|
"@types/marked": "^5.0.2",
|
2024-03-27 21:02:30 +03:00
|
|
|
"autoprefixer": "^10.4.19",
|
2023-09-06 11:46:07 +03:00
|
|
|
"class-transformer": "^0.5.1",
|
|
|
|
"date-fns": "^2.30.0",
|
|
|
|
"diff-match-patch": "^1.0.5",
|
2024-06-24 22:18:28 +03:00
|
|
|
"git-url-parse": "^14.0.0",
|
2024-03-01 19:15:11 +03:00
|
|
|
"inter-ui": "^4.0.2",
|
2023-09-06 11:46:07 +03:00
|
|
|
"lscache": "^1.3.2",
|
2023-11-20 18:31:47 +03:00
|
|
|
"marked": "^10.0.0",
|
2023-12-04 19:02:35 +03:00
|
|
|
"nanoevents": "^9.0.0",
|
2024-03-27 21:02:30 +03:00
|
|
|
"postcss": "^8.4.38",
|
2024-05-13 01:11:09 +03:00
|
|
|
"postcss-load-config": "^5.1.0",
|
2024-06-05 03:32:49 +03:00
|
|
|
"postcss-pxtorem": "^6.1.0",
|
2024-06-03 18:44:10 +03:00
|
|
|
"posthog-js": "1.136.4",
|
2024-04-01 18:25:51 +03:00
|
|
|
"reflect-metadata": "^0.2.2",
|
2023-11-12 21:32:44 +03:00
|
|
|
"rxjs": "^7.8.1",
|
2024-06-17 17:27:51 +03:00
|
|
|
"svelte": "5.0.0-next.149",
|
2024-06-03 18:44:10 +03:00
|
|
|
"svelte-check": "^3.8.0",
|
2023-12-11 18:08:09 +03:00
|
|
|
"svelte-floating-ui": "^1.5.8",
|
2023-09-06 11:46:07 +03:00
|
|
|
"svelte-french-toast": "^1.2.0",
|
|
|
|
"svelte-loadable-store": "^2.0.1",
|
|
|
|
"svelte-resize-observer": "^2.0.0",
|
2024-01-19 20:35:08 +03:00
|
|
|
"tauri-plugin-context-menu": "^0.7.0",
|
2024-02-29 21:28:45 +03:00
|
|
|
"tauri-plugin-log-api": "github:tauri-apps/tauri-plugin-log#v1",
|
2024-01-28 14:38:54 +03:00
|
|
|
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#v1",
|
2023-09-07 14:48:04 +03:00
|
|
|
"tinykeys": "^2.1.0",
|
2024-06-17 17:27:51 +03:00
|
|
|
"tslib": "^2.6.3",
|
|
|
|
"vite": "^5.2.13",
|
2023-11-20 18:31:21 +03:00
|
|
|
"vitest": "^0.34.6"
|
2024-03-08 01:28:34 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-06-03 18:44:10 +03:00
|
|
|
"openai": "^4.47.3"
|
2024-05-06 14:01:22 +03:00
|
|
|
}
|
2023-09-06 11:46:07 +03:00
|
|
|
}
|