-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.45 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
{
"name": "mucho",
"version": "0.3.0",
"description": "",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "./bin/index.mjs",
"scripts": {
"dev": "pnpm build && pnpm mucho",
"build": "rollup -c",
"watch": "rollup -c --watch",
"test": "pnpm test:unit",
"test:unit": "jest -c ./jest-unit.config.ts --rootDir . --silent",
"test:unit:watch": "jest -c ./jest-unit.config.ts --rootDir . --watch",
"mucho": "node ./bin/index.mjs",
"changeset:version": "changeset version && git add -A && git commit -m \"chore: version\"",
"changeset:publish": "pnpm build && changeset publish",
"style:fix": "prettier --write 'src/{*,**/*}.{ts,tsx,js,jsx,css,json,md}'"
},
"bin": {
"mucho": "bin/index.mjs"
},
"files": [
"/bin"
],
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@iarna/toml": "^2.2.5",
"@inquirer/prompts": "^7.0.0",
"@solana/buffer-layout": "^4.0.1",
"@solana/buffer-layout-utils": "^0.2.0",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.95.3",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"inquirer": "^12.0.0",
"ora": "^8.1.0",
"picocolors": "^1.1.1",
"punycode": "^2.3.1",
"shell-exec": "^1.1.2",
"yaml": "^2.6.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@jest/types": "^29.6.3",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@swc/core": "^1.9.3",
"@swc/jest": "^0.2.37",
"@types/bn.js": "^5.1.6",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.7.6",
"@types/prompts": "^2.4.9",
"jest": "^29.7.0",
"rollup": "^4.24.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"keywords": [],
"homepage": "https://github.com/solana-developers/mucho#readme",
"bugs": {
"url": "https://github.com/solana-developers/mucho/issues"
},
"repository": {
"name": "solana-developers/mucho",
"type": "git",
"url": "git+https://github.com/solana-developers/mucho.git"
},
"author": "nickfrosty",
"contributors": [
{
"name": "Nick Frostbutter",
"url": "https://github.com/nickfrosty"
}
]
}