-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.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
{
"name": "chukti",
"version": "0.1.1",
"description": "A library designed to simplify the smart contracts testing using human-readable syntax",
"author": "Sohab Sk",
"license": "MIT",
"repository": {
"url": "https://github.com/ITZSHOAIB/chukti"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"bin": {
"chukti": "dist/cli.mjs"
},
"scripts": {
"build": "pnpm clean && rollup -c --bundleConfigAsCjs",
"clean": "rimraf dist",
"changeset:version": "changeset version",
"changeset:publish": "pnpm build && changeset publish",
"typecheck": "tsc --noEmit",
"format": "biome format --write",
"lint": "biome check --fix",
"lint-staged": "lint-staged",
"prepare": "npx simple-git-hooks",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@cucumber/cucumber": "^11.0.1",
"command-exists": "^1.2.9",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.2.0",
"picocolors": "^1.1.0",
"tree-kill": "^1.2.2",
"viem": "^2.21.19",
"yargs": "^17.7.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/command-exists": "^1.2.3",
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.7.4",
"@types/yargs": "^17.0.33",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"simple-git-hooks": "^2.11.1",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vitepress": "^1.4.0"
},
"peerDependencies": {
"typescript": ">=5.0.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"files": ["dist", "sample-projects", "src"],
"keywords": [
"Smart contract test",
"Smart contract test cucumber",
"Blockchain test",
"Smart contract",
"Smart contract cucumber",
"Hardhat cucumber"
],
"lint-staged": {
"*": ["pnpm lint"]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20.0.0"
}
}