-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.13 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.13 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
{
"name": "@zerodev/intent",
"version": "0.0.28",
"main": "./_cjs/index.js",
"module": "./_esm/index.js",
"types": "./_types/index.d.ts",
"typings": "./_types/index.d.ts",
"sideEffects": false,
"private": false,
"publishConfig": {
"access": "public"
},
"workspaces": [
"."
],
"repository": {
"type": "git",
"url": "https://github.com/zerodevapp/intent-sdk.git"
},
"files": [
"_esm",
"_cjs",
"_types",
"src"
],
"scripts": {
"build": "bun run clean && bun run build:cjs && bun run build:esm && bun run build:types",
"build:cjs": "tsc --project ./tsconfig.build.json --module commonjs --outDir ./_cjs --removeComments --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./_cjs/package.json",
"build:esm": "tsc --project ./tsconfig.build.json --module es2015 --outDir ./_esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./_esm/package.json",
"build:types": "tsc --project ./tsconfig.build.json --module esnext --declarationDir ./_types --emitDeclarationOnly --declaration --declarationMap",
"clean": "rm -rf _esm _cjs _types",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "biome check . --apply",
"test": "bun test",
"test:watch": "bun test --watch",
"changeset": "changeset",
"changeset:release": "bash remove-type.sh && bun run build && changeset publish && bash restore-type.sh && bun run format",
"changeset:version": "changeset version && bun install --lockfile-only"
},
"exports": {
".": {
"types": "./_types/index.d.ts",
"import": "./_esm/index.js",
"default": "./_cjs/index.js"
}
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@changesets/changelog-git": "^0.2.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"bun-types": "latest",
"dotenv": "^16.4.5",
"typescript": "^5.3.3"
},
"peerDependencies": {
"viem": "^2.21.40"
},
"dependencies": {
"@zerodev/ecdsa-validator": "^5.4.1",
"@zerodev/multi-chain-ecdsa-validator": "^5.4.3",
"@zerodev/sdk": "^5.4.19"
},
"type": "module"
}