-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.19 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
{
"name": "rmrk-js",
"version": "0.0.1",
"description": "The monorepo repository of RMRK EVM typescript libraries",
"bugs": "https://github.com/rmrk-team/rmrk-js/issues",
"homepage": "https://github.com/rmrk-team/rmrk-js",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm run --r --filter \"./packages/**\" build",
"build:apps": "pnpm run --r --filter \"./apps/**\" build",
"panda:prepare": "panda codegen --cwd=apps/composable-nft-renderer-app",
"changeset:publish": "pnpm build && changeset publish",
"changeset:version": "changeset version",
"clean": "pnpm run --r --parallel clean",
"dev:react": "pnpm run --parallel --stream dev",
"dev:next": "pnpm --filter composable-nft-renderer-app dev",
"start": "pnpm --filter composable-nft-renderer-app start",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "pnpm lint --apply",
"test": "vitest",
"test:ci": "CI=true vitest --coverage --retry=3 --bail=1 --pool=forks",
"test:watch": "pnpm run test --watch",
"test:build": "pnpm run --r --parallel test:build",
"test:cov": "vitest run --coverage",
"test:typecheck": "vitest typecheck",
"test:ui": "vitest --ui",
"test:update": "vitest --update",
"typecheck": "pnpm run --r --parallel typecheck && tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@pandacss/dev": "^0.45.1",
"@preconstruct/cli": "^2.8.2",
"@types/node": "18.16.9",
"@viem/anvil": "^0.0.7",
"@vitest/coverage-v8": "^1.2.0",
"@vitest/ui": "^1.2.0",
"glob": "^10.3.10",
"happy-dom": "^13.1.4",
"jsdom": "^23.2.0",
"prettier": "^2.8.8",
"simple-git-hooks": "^2.9.0",
"ts-node": "10.9.1",
"typescript": "^5.5.4",
"vitest": "^1.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm format && pnpm lint:fix"
},
"workspaces": ["packages/*"],
"preconstruct": {
"packages": ["packages/*"]
},
"license": "MIT",
"authors": ["yurinondual.eth <[email protected]>"],
"contributors": [
{
"name": "Ayuilos",
"url": "https://github.com/Ayuilos"
}
]
}