-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.8 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
117
118
119
{
"name": "@effect/vite-plugin",
"version": "0.0.1",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Effect-TS/vite-plugin.git"
},
"author": "Michael Arnaldi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Effect-TS/vite-plugin/issues"
},
"homepage": "https://github.com/Effect-TS/vite-plugin",
"description": "A vite-plugin for effect-ts projects",
"tags": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"keywords": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"scripts": {
"version": "changeset version && pnpm install --no-frozen-lockfile",
"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",
"lint": "eslint . --ext .ts,.tsx",
"autofix": "pnpm lint --fix",
"tc": "tsc --noEmit",
"circular": "madge --ts-config ./tsconfig.madge.json --circular --no-color --no-spinner --warning build/esm"
},
"exports": {
".": {
"require": "./build/cjs/index.js"
},
"./*": {
"require": "./build/cjs/*.js"
}
},
"dependencies": {
"@babel/core": "^7.20.5",
"@rollup/pluginutils": "^5.0.2",
"@vitejs/plugin-react": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.20.5",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@effect-ts/build-utils": "0.40.3",
"@effect-ts/core": "^0.60.2",
"@effect/core": "^0.0.16",
"@effect/language-service": "^0.0.15",
"@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.0.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@types/prettier": "2.7.1",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.26.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"concurrently": "^7.6.0",
"cpx": "^1.5.0",
"docs-ts": "0.6.10",
"eslint": "^8.30.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.4.0",
"glob": "^8.0.3",
"madge": "^5.0.1",
"picocolors": "^1.0.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"rollup": "^3.7.5",
"ts-codemod": "^4.0.4",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "https://cdn.jsdelivr.net/npm/@tsplus/[email protected]/compiler/typescript.tgz",
"ultra-runner": "^3.10.5",
"vite": "^4.0.2",
"vitest": "0.26.0",
"wtfnode": "^0.9.1"
},
"pnpm": {
"patchedDependencies": {
"@effect-ts/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"config": {
"side": [],
"modules": [],
"global": []
}
}