-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.58 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.58 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"private": true,
"pnpm": {
"patchedDependencies": {
"ts-plugin-sort-import-suggestions": "patches/ts-plugin-sort-import-suggestions.patch",
"@tanstack/query-core": "patches/@tanstack__query-core.patch",
"typescript@6.0.2": "patches/typescript.patch",
"@ben_12/eslint-plugin-dprint": "patches/@ben_12__eslint-plugin-dprint.patch",
"eslint-plugin-codegen": "patches/eslint-plugin-codegen.patch"
}
},
"engines": {
"pnpm": ">= 9.0.4"
},
"scripts": {
"all": "pnpm -r",
"pub": "pnpm ci:version && git commit -am 'chore: update versions' && pnpm ci:publish",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm build && pnpm --config.node-linker=hoisted -r publish --access=public",
"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",
"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",
"lint:watch": "ESLINT_TS=1 esw -w --changed --clear --ext ts,tsx",
"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": "effect-app-cli packagejson-packages pnpm check",
"check": "tsc --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": "effect-language-service patch"
},
"resolutions": {
"date-fns": "$date-fns",
"fast-check": "$fast-check",
"vue": "$vue"
},
"dependencies": {
"cross-env": "^10.1.0",
"date-fns": "^4.1.0",
"fast-check": "^4.6.0",
"proper-lockfile": "^4.1.2",
"vue": "^3.5.31"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@effect-app/cli": "2.0.1-beta.6",
"@effect-app/eslint-codegen-model": "workspace:*",
"@effect-app/infra": "workspace:*",
"@effect/language-service": "0.84.2",
"@effect/platform-node": "^4.0.0-beta.43",
"@effect/vitest": "^4.0.0-beta.43",
"@tsconfig/strictest": "^2.0.8",
"@types/lodash": "^4.17.24",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"@typescript-eslint/scope-manager": "8.57.2",
"@vue/eslint-config-typescript": "^14.7.0",
"concurrently": "^9.2.1",
"dprint": "^0.53.1",
"effect": "^4.0.0-beta.43",
"effect-app": "workspace:*",
"enhanced-resolve": "^5.20.1",
"eslint": "^10.1.0",
"history": "^5.3.0",
"json5": "^2.2.3",
"madge": "^8.0.0",
"module-alias": "^2.3.4",
"nodemon": "^3.1.14",
"npm-check-updates": "^19.6.6",
"ts-plugin-sort-import-suggestions": "^1.0.4",
"ts-transform-paths": "^3.0.0",
"tsc-watch": "^7.2.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "~6.0.2",
"unplugin-auto-import": "^21.0.0",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}