-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 3.21 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
{
"private": true,
"packageManager": "pnpm@11.18.0",
"engines": {
"pnpm": ">= 11.0.0"
},
"scripts": {
"all": "pnpm -r",
"pub": "pnpm ci:version && git commit -am 'chore: update versions' && pnpm pub:only",
"pub:only": "pnpm ci:publish && git push && git push --follow-tags",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm build && pnpm changeset publish",
"preinstall": "npx only-allow pnpm",
"clean": "pnpm all clean",
"clean-dist": "pnpm -r clean-dist",
"lint-fix": "NODE_OPTIONS=--max-old-space-size=6144 pnpm -r --no-bail lint-fix",
"lint": "pnpm -r lint",
"circular:dist": "pnpm -r circular:dist",
"test": "pnpm -r --no-bail test:run",
"pr:ready": "node scripts/agent-pr-ready.mjs",
"testsuite": "pnpm -r --no-bail testsuite",
"up-all": "pnpm --recursive update",
"u": "pnpm run update && pnpm i && pnpm dedupe",
"update": "ncu -u && pnpm -r exec ncu -u",
"ncu": "ncu",
"packages": "pnpm -r --workspace-concurrency 1",
"circular-packages": "pnpm packages circular",
"lint-packages": "pnpm packages lint",
"test-packages": "pnpm packages test:run",
"testsuite-packages": "pnpm packages testsuite",
"watch-packages": "pnpm packages build && pnpm packages watch",
"build:tsc": "pnpm check && node scripts/rewrite-dist-declaration-imports.mjs",
"check": "tsgo --build ./tsconfig.all.json",
"watch": "pnpm build:tsc --watch",
"build": "cd packages/eslint-shared-config && pnpm build && cd ../.. && cd packages/cli && pnpm build && cd .. && pnpm build:tsc && cd vue-components && pnpm build",
"rbuild": "pnpm clean && pnpm build",
"nnm": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && pnpm i",
"prepare": "node -e \"const v=require('typescript/package.json').version;if(v.startsWith('6.')){require('child_process').execSync('effect-language-service patch',{stdio:'inherit'})}else{console.log('Skipping effect-language-service patch for TypeScript '+v)}\" && effect-tsgo patch --no-typescript --oxlint && node scripts/install-git-hooks.mjs",
"subtree:effect": "node scripts/sync-effect-subtree.js"
},
"dependencies": {
"date-fns": "^4.4.0",
"fast-check": "^4.8.0",
"vue": "^3.5.35"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@effect-app/cli": "2.1.0-beta.35",
"@effect-app/eslint-codegen-model": "workspace:*",
"@effect-app/infra": "workspace:*",
"@effect/language-service": "0.86.2",
"@effect/tsgo": "^0.31.0",
"@effect/platform-node": "4.0.0-beta.90",
"@effect/vitest": "4.0.0-beta.90",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "25.9.1",
"@typescript-eslint/eslint-plugin": "8.60.0",
"@typescript-eslint/parser": "8.60.0",
"@typescript/native-preview": "7.0.0-dev.20260626.1",
"dprint": "^0.54.0",
"effect": "4.0.0-beta.90",
"effect-app": "workspace:*",
"eslint": "^10.4.1",
"json5": "^2.2.3",
"lint-staged": "^17.3.0",
"madge": "^8.0.0",
"npm-check-updates": "^22.2.1",
"oxlint": "1.77.0",
"oxlint-tsgolint": "7.0.2001",
"pkg-pr-new": "0.0.75",
"ts-plugin-sort-import-suggestions": "^1.0.4",
"typescript": "~6.0.3",
"vite": "^8.0.15",
"vitest": "^4.1.7"
}
}