-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 3.43 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
69
70
71
72
73
74
75
76
77
{
"name": "likftc-workspace",
"version": "1.0.0-alpha.0",
"private": true,
"type": "module",
"scripts": {
"build": "vp run -r --concurrency-limit 1 build",
"changeset": "changeset",
"check": "vp check",
"check:compatibility": "node scripts/validate-compatibility.mjs",
"check:docs": "vp run -t --concurrency-limit 1 @vp-tw/likftc-demos#build && vp run @vp-tw/likftc-docs#check",
"check:frameworks": "vp run @vp-tw/likftc#check:svelte && vp run @vp-tw/likftc#check:angular && vp run @vp-tw/likftc-demos#check:angular && vp run @vp-tw/likftc-demos#check:svelte && vp run @vp-tw/likftc-demos#check:vue",
"check:packages": "node scripts/validate-packages.mjs",
"check:site": "node scripts/validate-docs.mjs --browser=chromium",
"check:site:browsers": "pnpm run check:site && pnpm run check:site:firefox && pnpm run check:site:webkit",
"check:site:firefox": "node scripts/validate-docs.mjs --browser=firefox --widths=320,375,1440",
"check:site:webkit": "node scripts/validate-docs.mjs --browser=webkit --widths=320,375,1440",
"check:core": "tsc --noEmit -p packages/likftc/tsconfig.json && tsc6 --noEmit -p packages/likftc/tsconfig.json && tsc --noEmit -p packages/likftc/tsconfig.test.json && tsc6 --noEmit -p packages/likftc/tsconfig.test.json && vp test run packages/likftc/src/index.test.ts",
"check:types": "vp run @vp-tw/likftc#build && vp run check:types:ts7 && vp run check:types:ts6",
"check:types:ts6": "tsc6 --noEmit -p tsconfig.tools.json && vp run -r --concurrency-limit 1 check:types:ts6",
"check:types:ts7": "tsc --noEmit -p tsconfig.tools.json && vp run -r --concurrency-limit 1 check:types:ts7",
"format": "vp fmt --write",
"format:check": "vp fmt --check",
"lint": "vp lint",
"prepare": "husky",
"release": "vp run build && changeset publish",
"test": "vp test run",
"test:browser:chromium": "vp test run --config vitest.browser.config.ts && vp test run --config vitest.qwik.browser.config.ts",
"test:core": "vp test run packages/likftc/src/index.test.ts",
"test:core:coverage": "vp test run --coverage packages/likftc/src/index.test.ts",
"verify:toolchain": "node scripts/verify-toolchain.mjs"
},
"devDependencies": {
"@angular/common": "22.0.6",
"@angular/compiler": "22.0.6",
"@angular/core": "22.0.6",
"@angular/platform-browser": "22.0.6",
"@arethetypeswrong/cli": "0.18.5",
"@axe-core/playwright": "4.12.1",
"@changesets/cli": "2.31.0",
"@octanejs/vite-plugin": "0.1.17",
"@qwik.dev/core": "2.0.0-beta.36",
"@sveltejs/vite-plugin-svelte": "7.2.0",
"@types/node": "24.13.3",
"@typescript/native": "npm:typescript@7.0.2",
"@vitejs/plugin-vue": "6.0.8",
"@vitest/browser-playwright": "4.1.10",
"@vitest/coverage-v8": "4.1.10",
"@vue/compiler-sfc": "3.5.39",
"fast-check": "4.9.0",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"lit": "3.3.3",
"octane": "0.1.17",
"oxfmt": "0.59.0",
"oxlint": "1.74.0",
"playwright": "1.61.1",
"preact": "10.29.7",
"publint": "0.3.21",
"react": "19.2.7",
"react-dom": "19.2.7",
"rxjs": "7.8.2",
"solid-js": "1.9.14",
"svelte": "5.56.5",
"typescript": "npm:@typescript/typescript6@6.0.2",
"vite-plugin-solid": "2.11.12",
"vite-plus": "0.2.4",
"vitest": "4.1.10",
"vue": "3.5.39",
"zone.js": "0.16.2"
},
"engines": {
"node": "24.18.0",
"pnpm": "11.12.0"
},
"packageManager": "pnpm@11.12.0"
}