-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.73 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.73 KB
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
{
"name": "graze-client",
"version": "0.8.1",
"type": "module",
"license": "MIT",
"description": "A Typescript Graze API client.",
"repository": {
"type": "git",
"url": "https://github.com/kristojorg/graze-client"
},
"publishConfig": {
"access": "public",
"directory": "."
},
"files": [
"build",
"src",
"tsconfig.*",
"README.md"
],
"exports": {
".": {
"import": "./build/esm/index.js",
"types": "./build/dts/index.d.ts"
},
"./effect": {
"import": "./build/esm/GrazeClient.js",
"types": "./build/dts/GrazeClient.d.ts"
},
"./schema": {
"import": "./build/esm/schema/index.js",
"types": "./build/dts/schema/index.d.ts"
},
"./builder": {
"import": "./build/esm/builder.js",
"types": "./build/dts/builder.d.ts"
}
},
"scripts": {
"codegen": "build-utils prepare-v2",
"build": "rm -rf build && rm -rf .tsbuildinfo && bun run build-esm",
"build-esm": "tsc -b tsconfig.build.json",
"check": "tsc -b tsconfig.json",
"lint": "eslint \"**/{src,test,examples,scripts,dtslint}/**/*.{ts,mjs}\"",
"lint-fix": "bun lint --fix",
"test": "vitest",
"coverage": "vitest --coverage",
"changeset-version": "changeset version",
"changeset-publish": "bun run build && TEST_DIST= bun vitest --run && changeset publish"
},
"dependencies": {},
"peerDependencies": {
"@effect/platform": "^0.84.11",
"effect": "^3.16.7"
},
"devDependencies": {
"@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-git": "^0.2.0",
"@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",
"@effect/platform": "latest",
"effect": "latest"
},
"packageManager": "pnpm@10.18.1+sha512.77a884a165cbba2d8d1c19e3b4880eee6d2fcabd0d879121e282196b80042351d5eb3ca0935fa599da1dc51265cc68816ad2bddd2a2de5ea9fdf92adbec7cd34"
}