forked from ricardocasares/rpc
-
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.25 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.25 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": "effect",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/effect-ts/rpc.git"
},
"workspaces": [
"packages/*"
],
"packageManager": "pnpm@8.7.3",
"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",
"test": "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"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@effect/babel-plugin": "^0.2.0",
"@effect/build-utils": "^0.1.4",
"@effect/docgen": "^0.1.8",
"@effect/eslint-plugin": "^0.1.2",
"@effect/language-service": "0.0.21",
"@types/node": "^20.7.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/web-worker": "^0.34.6",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"concurrently": "^8.2.1",
"eslint": "^8.50.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-codegen": "0.17.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"madge": "^6.1.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"ultra-runner": "^3.10.5",
"vite": "^4.4.9",
"vitest": "0.34.6"
},
"pnpm": {
"patchedDependencies": {
"@changesets/assemble-release-plan@5.2.4": "patches/@changesets__assemble-release-plan@5.2.4.patch"
}
}
}