-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
87 lines (87 loc) · 3.08 KB
/
package.json
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
{
"name": "typed",
"private": true,
"version": "10.0.0-beta.2",
"description": "Web Applications with Effect",
"author": "The Typed contributors",
"repository": {
"type": "git",
"url": "https://github.com/tylors/typed.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"changeset": "changeset",
"release": "changeset publish",
"clean": "ultra -r clean && rimraf tsconfig.tsbuildinfo",
"build": "pnpm build-all && ultra -r -b build-pack",
"build-all": "tsc -b tsconfig.build.json",
"build-watch": "tsc -b tsconfig.build.json --watch",
"circular": "madge --ts-config ./tsconfig.madge.json --circular --no-color --no-spinner --warning packages/*/build/esm -x '(fx|template)/build/esm/(Computed|Filtered|vitest).js'",
"test": "ultra -r test",
"test-watch": "vitest",
"autofix": "ultra -r autofix",
"docs": "ultra -r docs && pnpm docs-cp",
"docs-cp": "node scripts/docs-cp.js",
"lint": "ultra -r lint",
"tc": "ultra -r tc",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"new-package": "./scripts/new-package.sh",
"sync-deps": "syncpack fix-mismatches --filter '^(?!@typed).+'",
"update-deps": "syncpack update",
"sync-refs": "node ./scripts/sync-project-references.js",
"update-paths": "node ./scripts/update-path-references.js",
"update": "pnpm run update-paths && pnpm run sync-refs",
"codemod": "node ./scripts/effect-codemod.js"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.7",
"@babel/plugin-transform-export-namespace-from": "^7.25.7",
"@babel/plugin-transform-modules-commonjs": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@effect/babel-plugin": "^0.2.0",
"@effect/build-utils": "^0.7.8",
"@effect/codemod": "^0.0.16",
"@effect/docgen": "^0.4.5",
"@effect/eslint-plugin": "^0.2.0",
"@effect/language-service": "0.1.0",
"@types/chai": "^5.0.0",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^2.1.2",
"@vitest/expect": "^2.1.2",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"cac": "^6.7.14",
"concurrently": "^9.0.1",
"effect": "^3.8.4",
"eslint": "^8.x.x",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-codegen": "0.29.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"madge": "^8.0.0",
"rimraf": "^6.0.1",
"shx": "^0.3.4",
"syncpack": "13.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"ultra-runner": "^3.10.5",
"vite": "^5.4.8",
"vite-plugin-tsconfig-paths": "^1.4.1",
"vitest": "2.1.2",
"zx": "^8.1.8"
},
"dependencies": {
"@effect/vitest": "^0.10.5"
},
"packageManager": "pnpm@9.0.6+sha1.648f6014eb363abb36618f2ba59282a9eeb3e879"
}