-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.52 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.52 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
{
"name": "mintun",
"version": "0.1.0",
"description": "A batch minting contract and integration with Lucid for interacting with that contract",
"author": "Genun Games",
"scripts": {
"build:offchain": "pnpm --filter {offchain} build",
"build:aiken": "aiken build contracts",
"build:aiken:trace": "aiken build contracts --trace-level verbose",
"build:full": "pnpm build:aiken && pnpm build:offchain",
"build": "pnpm build:offchain",
"build:full:trace": "pnpm build:aiken:trace && pnpm build:offchain",
"contracts:major": "cd scripts && bun install && bun run bump-major.ts && cd - && pnpm build:aiken",
"contracts:minor": "cd scripts && bun install && bun run bump-minor.ts && cd - &&pnpm build:aiken",
"contracts:patch": "cd scripts && bun install && bun run bump-patch.ts && cd - && pnpm build:aiken",
"contracts:upload": "cd scripts && bun run upload-contract.ts && cd - && pnpm build:offchain",
"contracts:bump:major": "pnpm contracts:major && pnpm contracts:upload",
"contracts:bump:minor": "pnpm contracts:minor && pnpm contracts:upload",
"contracts:bump:patch": "pnpm contracts:patch && pnpm contracts:upload",
"test": "pnpm build:aiken:trace && pnpm --filter {offchain} test"
},
"packageManager": "pnpm@9.3.0+sha256.e1f9e8d1a16607a46dd3c158b5f7a7dc7945501d1c6222d454d63d033d1d918f",
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"next": "14.1.0",
"prettier": "^3",
"prettier-plugin-tailwindcss": "^0.5.11",
"vercel": "^33.6.2"
}
}