-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "@0xintuition/protocol",
"version": "0.1.4",
"description": "Protocol",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"publish-dry": "pnpm build && pnpm publish --dry-run --no-git-checks --ignore-scripts",
"publish-next": "pnpm build && pnpm publish --tag next --no-git-checks --ignore-scripts",
"publish-latest": "pnpm build && pnpm publish --tag latest --no-git-checks --ignore-scripts",
"version:patch": "pnpm version patch --no-git-tag-version",
"version:minor": "pnpm version minor --no-git-tag-version",
"version:major": "pnpm version major --no-git-tag-version",
"version:beta": "pnpm version prerelease --preid beta --no-git-tag-version",
"lint:fix": "pnpm lint --fix",
"generate": "node ./scripts/generate.mjs",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/0xIntuition/intuition-ts",
"directory": "packages/protocol"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"viem": "2.22.6"
},
"devDependencies": {
"@viem/anvil": "^0.0.10",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vitest": "^1.3.1",
"tsup": "^6.7.0",
"concurrently": "^8.2.2"
}
}