-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
114 lines (114 loc) · 3.67 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
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": "@fp-ts/optic",
"version": "0.25.0",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"packageManager": "pnpm@9.10.0",
"repository": {
"type": "git",
"url": "https://github.com/fp-ts/optic.git"
},
"author": "Giulio Canti <giulio.canti@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fp-ts/optic/issues"
},
"homepage": "https://github.com/fp-ts/optic",
"description": "Functional programming in TypeScript",
"tags": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"keywords": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"scripts": {
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run docs-update",
"release": "pnpm run build && changeset publish",
"clean": "rimraf build tsbuildinfo dist .ultra.cache.json",
"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-v3",
"build-pack": "concurrently \"pnpm build-cjs\" \"pnpm build-mjs\" && pnpm build-post",
"build-all": "tsc -b tsconfig.json",
"build-watch": "tsc -b tsconfig.json --watch",
"dtslint": "dtslint dtslint",
"dtslint-clean": "dtslint --installAll",
"lint": "eslint . --ext .ts,.tsx",
"autofix": "pnpm lint --fix",
"tc": "tsc --noEmit",
"docgen": "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",
"test-all": "pnpm run circular && pnpm run lint && pnpm run dtslint && vitest run",
"coverage": "vitest run --coverage",
"check": "tsc -b tsconfig.json"
},
"exports": {
".": {
"require": "./build/cjs/index.js"
},
"./*": {
"require": "./build/cjs/*.js"
}
},
"config": {
"side": [],
"modules": [],
"global": []
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@effect-ts/build-utils": "0.40.7",
"@effect-ts/core": "^0.60.5",
"@effect/docgen": "0.4.4",
"@effect/dtslint": "0.1.1",
"@effect/typeclass": "^0.27.2",
"@repo-tooling/eslint-plugin-dprint": "^0.0.4",
"@types/benchmark": "^2.1.5",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/rimraf": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@vitest/coverage-v8": "^2.1.1",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"concurrently": "^9.0.1",
"cpx": "^1.5.0",
"effect": "^3.8.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-codegen": "^0.29.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"fast-check": "^3.22.0",
"glob": "^11.0.0",
"madge": "^8.0.0",
"picocolors": "^1.1.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"ultra-runner": "^3.10.5",
"vite": "^5.4.6",
"vitest": "^2.1.1"
},
"peerDependencies": {
"@effect/typeclass": "^0.27.0",
"effect": "^3.8.0"
}
}