-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.93 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
{
"name": "@lejeunerenard/ballchasing-api",
"version": "1.1.2",
"type": "module",
"packageManager": "pnpm@9.10.0",
"scripts": {
"codegen": "build-utils prepare-v2",
"build": "pnpm build-esm && pnpm build-annotate && pnpm build-cjs && build-utils pack-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/esm --plugins annotate-pure-calls --out-dir build/esm --source-maps",
"check": "tsc -b tsconfig.json",
"test": "NODE_OPTIONS='--import=tsx' brittle tests/**/*.ts tests/*.ts",
"lint": "prettier . --check",
"changeset-version": "changeset version",
"changeset-publish": "pnpm build && TEST_DIST= pnpm test && changeset publish"
},
"keywords": [
"rocket league",
"ballchasing.com",
"client"
],
"author": "Sean Zellmer <sean@lejeunerenard.com> (http://lejeunerenard.com/)",
"license": "MIT",
"description": "A client library for ballchasing.com",
"repository": {
"type": "git",
"url": "git@github.com:lejeunerenard/ballchasing-api.git"
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"devDependencies": {
"@types/brittle": "^3.5.0",
"brittle": "^3.7.0",
"nock": "^14.0.0-beta.19",
"prettier": "^3.4.2",
"prettier-config-standard": "^7.0.0",
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-export-namespace-from": "^7.24.7",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@effect/build-utils": "^0.7.7",
"@effect/eslint-plugin": "^0.2.0",
"@effect/language-service": "^0.1.0",
"@effect/vitest": "latest",
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.10.0",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"eslint": "^9.10.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-codegen": "^0.28.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"tsx": "^4.17.0",
"typescript": "^5.6.2",
"vitest": "^2.0.5"
},
"dependencies": {
"@effect/platform": "^0.72.1",
"effect": "^3.12.1"
},
"effect": {
"generateExports": {
"include": [
"**/*.ts"
]
},
"generateIndex": {
"include": [
"*.ts",
"services/*.ts"
]
}
},
"pnpm": {
"patchedDependencies": {
"@changesets/get-github-info@0.6.0": "patches/@changesets__get-github-info@0.6.0.patch",
"babel-plugin-annotate-pure-calls@0.4.0": "patches/babel-plugin-annotate-pure-calls@0.4.0.patch"
}
}
}