forked from Effect-TS/data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.71 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": "@effect/data",
"version": "0.12.2",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Effect-TS/data.git"
},
"author": "Michael Arnaldi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Effect-TS/data/issues"
},
"homepage": "https://github.com/Effect-TS/data",
"description": "Functional programming in TypeScript",
"tags": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"keywords": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"scripts": {
"example": "ts-node --project tsconfig.examples.json",
"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 .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.json",
"build-watch": "tsc -b tsconfig.json --watch",
"lint": "eslint --ext .ts,.tsx src/**/* test/**/*",
"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",
"coverage": "vitest run --coverage",
"dtslint": "dtslint dtslint"
},
"exports": {
".": {
"require": "./build/cjs/index.js"
},
"./*": {
"require": "./build/cjs/*.js"
}
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@effect-ts/build-utils": "0.40.7",
"@effect-ts/core": "^0.60.5",
"@effect/babel-plugin": "^0.2.0",
"@effect/core": "^0.0.16",
"@effect/language-service": "^0.0.19",
"@repo-tooling/eslint-plugin-dprint": "^0.0.4",
"@rollup/pluginutils": "^5.0.2",
"@types/benchmark": "^2.1.2",
"@types/chai": "^4.3.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.10",
"@types/prettier": "2.7.2",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vitejs/plugin-react": "^3.0.1",
"@vitest/coverage-c8": "^0.29.8",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"concurrently": "^7.6.0",
"cpx": "^1.5.0",
"docs-ts": "0.8.0",
"dtslint": "github:gcanti/dtslint",
"error-stack-parser": "^2.1.4",
"eslint": "^8.36.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-codegen": "0.17.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"fast-check": "^3.7.1",
"glob": "^9.3.2",
"madge": "^6.0.0",
"picocolors": "^1.0.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"stackframe": "^1.3.4",
"ts-codemod": "^4.0.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"ultra-runner": "^3.10.5",
"vite": "^4.2.1",
"vitest": "0.29.8"
},
"config": {
"side": [],
"modules": [],
"global": []
}
}