-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.19 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "diffspot",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm test:packages && pnpm build:packages && pnpm build:app",
"build:app": "nuxt build",
"dev": "pnpm build:packages && pnpm dev:packages & nuxt dev",
"dev:packages": "pnpm --filter @diffspot/core dev & pnpm --filter @diffspot/vue dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint": "eslint .",
"typecheck": "nuxt typecheck",
"prepare": "husky",
"postinstall": "nuxt prepare",
"build:core": "pnpm --filter @diffspot/core build",
"build:vue": "pnpm --filter @diffspot/vue build",
"build:packages": "pnpm build:core && pnpm build:vue",
"test:packages": "pnpm --filter './packages/*' test"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.16",
"@diffspot/core": "workspace:*",
"@diffspot/vue": "workspace:*",
"@lezer/common": "^1.5.1",
"@lezer/highlight": "^1.2.3",
"@nuxtjs/color-mode": "^4.0.0",
"@nuxtjs/google-fonts": "^3.2.0",
"@tailwindcss/vite": "^4.2.1",
"codemirror": "^6.0.2",
"diff": "^8.0.3",
"lucide-vue-next": "^0.577.0",
"nuxt": "^4.4.2",
"vue": "latest",
"vue-codemirror": "^6.1.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260313.1",
"@nuxt/eslint": "^1.15.2",
"@types/diff": "^7.0.2",
"eslint": "^10.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"nitro-cloudflare-dev": "^0.2.2",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vue-tsc": "^2.2.12",
"wrangler": "^4.71.0"
},
"lint-staged": {
"*.{ts,vue,js,mjs}": "eslint --fix"
}
}