-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.63 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.63 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "effect-react",
"version": "0.0.7",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/datner/react-effect.git"
},
"author": "Yuval Datner <datner@contact.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/datner/react-effect/issues"
},
"homepage": "https://github.com/datner/react-effect",
"description": "Effectful programming in React",
"tags": [
"typescript",
"algebraic-data-types",
"react",
"effect"
],
"keywords": [
"typescript",
"algebraic-data-types",
"react",
"effect"
],
"scripts": {
"version": "changeset version && pnpm install --no-frozen-lockfile",
"release": "pnpm run build && changeset publish",
"clean": "rimraf build tsbuildinfo dist .cache",
"build": "pnpm build-all && pnpm build-pack",
"build-cjs": "babel build/esm --config-file ./.babel.cjs.json --out-dir build/cjs --out-file-extension .js --source-maps",
"build-mjs": "babel build/esm --config-file ./.babel.mjs.json --out-dir build/mjs --out-file-extension .mjs --source-maps",
"build-post": "build-utils pack-v4",
"build-pack": "concurrently \"pnpm build-cjs\" \"pnpm build-mjs\" && pnpm build-post",
"build-all": "tsc -b tsconfig.build.json",
"build-watch": "tsc -b tsconfig.build.json --watch",
"lint": "eslint src/**/* test/**/*",
"autofix": "pnpm lint --fix",
"tc": "tsc --noEmit",
"docs": "docgen",
"docs-update": "git add --force --all docs/modules || true",
"circular": "madge --ts-config ./tsconfig.madge.json --circular --no-color --no-spinner --warning build/esm",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"exports": {
"./*": {
"require": "./build/cjs/*.js"
}
},
"packageManager": "pnpm@8.7.5",
"peerDependencies": {
"@effect/data": "^0.18.4",
"@effect/io": "^0.40.0",
"@effect/stream": "^0.36.0",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.17",
"@babel/plugin-transform-modules-commonjs": "^7.22.15",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@effect-ts/build-utils": "0.40.7",
"@effect-ts/core": "^0.60.5",
"@effect/babel-plugin": "^0.2.0",
"@effect/data": "^0.18.5",
"@effect/docgen": "^0.1.5",
"@effect/io": "^0.40.1",
"@effect/language-service": "^0.0.21",
"@effect/stream": "^0.36.0",
"@repo-tooling/eslint-plugin-dprint": "^0.0.4",
"@testing-library/dom": "9.3.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/chai": "^4.3.6",
"@types/node": "^20.6.0",
"@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^0.34.4",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"concurrently": "^8.2.1",
"error-stack-parser": "^2.1.4",
"eslint": "^8.49.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-codegen": "0.17.0",
"eslint-plugin-deprecation": "^1.5.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"fast-check": "^3.13.0",
"jsdom": "^22.1.0",
"madge": "^6.1.0",
"rimraf": "^5.0.1",
"stackframe": "^1.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "0.34.4"
},
"config": {
"side": [],
"modules": [],
"global": []
}
}