-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
122 lines (122 loc) · 3.65 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
120
121
122
{
"name": "@rabbitholegg/questdk",
"version": "2.0.0-alpha.35",
"description": "",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"packageManager": "[email protected]",
"scripts": {
"bench": "vitest bench",
"bench:ci": "CI=true vitest bench",
"build": "pnpm run clean && pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
"build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir ./dist/cjs --removeComments --verbatimModuleSyntax false && echo > ./dist/cjs/package.json '{\"type\":\"commonjs\"}'",
"build:esm": "tsc --project tsconfig.build.json --module es2015 --outDir ./dist/esm && echo > ./dist/esm/package.json '{\"type\":\"module\",\"sideEffects\":false}'",
"build:types": "tsc --project tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap",
"changeset": "changeset",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only && pnpm bun scripts/updateVersion.ts",
"clean": "rimraf dist",
"format": "rome format . --write",
"lint": "rome check .",
"lint:fix": "pnpm lint --apply",
"prepublishOnly": "pnpm bun scripts/prepublishOnly.ts",
"size": "size-limit",
"test": "vitest dev",
"test:cov": "vitest dev --coverage",
"test:ci": "CI=true vitest --coverage",
"test:typecheck": "SKIP_GLOBAL_SETUP=true vitest typecheck",
"test:ui": "vitest dev --ui",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"authors": [
"rabbitholegg"
],
"license": "MIT",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"typesVersions": {
"*": {
"utils": [
"./dist/types/utils/index.d.ts"
],
"actions": [
"./dist/types/actions/index.d.ts"
],
"filter": [
"./dist/types/filter/index.d.ts"
]
}
},
"sideEffects": false,
"files": [
"dist",
"!dist/**/*.tsbuildinfo",
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/**/*.test-d.ts",
"!src/**/*.bench.ts",
"!src/_test/**/*"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/cjs/index.js"
},
"./actions": {
"types": "./dist/types/actions/index.d.ts",
"import": "./dist/esm/actions/index.js",
"default": "./dist/cjs/actions/index.js"
},
"./filter": {
"types": "./dist/types/filter/index.d.ts",
"import": "./dist/esm/filter/index.js",
"default": "./dist/cjs/filter/index.js"
},
"./utils": {
"types": "./dist/types/utils/index.d.ts",
"import": "./dist/esm/utils/index.js",
"default": "./dist/cjs/utils/index.js"
}
},
"peerDependencies": {
"typescript": ">=5.1.6"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@size-limit/preset-big-lib": "^8.2.6",
"@types/fs-extra": "^11.0.1",
"@vitest/coverage-v8": "^0.33.0",
"bun": "^0.6.14",
"fs-extra": "^11.1.1",
"rome": "^12.1.3",
"simple-git-hooks": "^2.8.1",
"size-limit": "^8.2.6",
"typescript": "5.1.6",
"vitest": "^0.33.0"
},
"dependencies": {
"abitype": "^0.9.0",
"rimraf": "^5.0.1",
"viem": "^1.15.1"
},
"repository": "rabbitholegg/questdk",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"pnpm": {
"overrides": {
"questdk": "workspace:*"
}
}
}