-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.22 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.22 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
{
"name": "@effect-atom/atom",
"version": "0.4.9",
"description": "Reactive toolkit for Effect",
"type": "module",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/tim-smart/effect-atom.git"
},
"homepage": "https://github.com/tim-smart/effect-atom",
"scripts": {
"build": "pnpm build-prepare && pnpm build-esm && pnpm build-cjs && pnpm build-annotate && build-utils pack-v2",
"build-prepare": "build-utils prepare-v2",
"build-esm": "tsc -b tsconfig.build.json",
"build-cjs": "babel build/esm --plugins @babel/transform-export-namespace-from --plugins @babel/transform-modules-commonjs --out-dir build/cjs --source-maps",
"build-annotate": "babel build --plugins annotate-pure-calls --out-dir build --source-maps"
},
"keywords": [],
"author": "Effect contributors",
"license": "MIT",
"sideEffects": [],
"devDependencies": {
"@effect/experimental": "^0.57.0",
"@effect/platform": "^0.93.0",
"@effect/rpc": "^0.72.1",
"effect": "^3.19.0"
},
"peerDependencies": {
"@effect/experimental": "^0.57.0",
"@effect/platform": "^0.93.0",
"@effect/rpc": "^0.72.1",
"effect": "^3.19.0"
}
}