-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
116 lines (116 loc) · 3.72 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
115
116
{
"name": "@fp-ts/core",
"version": "0.2.1",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/fp-ts/core.git"
},
"author": "Giulio Canti <giulio.canti@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fp-ts/core/issues"
},
"homepage": "https://github.com/fp-ts/core",
"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",
"lint": "eslint . --ext .ts,.tsx",
"autofix": "pnpm lint --fix",
"tc": "tsc --noEmit",
"docs": "docs-ts",
"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": "npm run circular && npm run dtslint && vitest run",
"coverage": "vitest run --coverage"
},
"exports": {
".": {
"require": "./build/cjs/index.js"
},
"./*": {
"require": "./build/cjs/*.js"
}
},
"config": {
"side": [],
"modules": [],
"global": []
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.20.5",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.2",
"@effect-ts/build-utils": "0.40.3",
"@effect-ts/core": "^0.60.2",
"@effect/language-service": "^0.0.17",
"@repo-tooling/eslint-plugin-dprint": "^0.0.4",
"@types/benchmark": "^2.1.2",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/prettier": "2.7.1",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vitest/coverage-c8": "^0.27.1",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"benchmark": "^2.1.4",
"c8": "^7.11.3",
"concurrently": "^7.6.0",
"cpx": "^1.5.0",
"docs-ts": "0.6.10",
"dtslint": "github:gcanti/dtslint",
"eslint": "^8.28.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-codegen": "0.16.1",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"fast-check": "^3.3.0",
"glob": "^8.0.3",
"madge": "^5.0.1",
"picocolors": "^1.0.0",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.3",
"ultra-runner": "^3.10.5",
"vite": "^3.2.4",
"vitest": "0.25.3"
},
"pnpm": {
"patchedDependencies": {
"@effect-ts/build-utils@0.40.3": "patches/@effect-ts__build-utils@0.40.3.patch",
"docs-ts@0.6.10": "patches/docs-ts@0.6.10.patch"
}
}
}