-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.15 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.15 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
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
103
104
105
106
{
"name": "nimiq-developer-center",
"title": "Nimiq Developer Center",
"type": "module",
"version": "2.0.14",
"packageManager": "pnpm@10.19.0",
"description": "Guides, resources and tips on how to create with Nimiq. Start building the future now!",
"author": {
"name": "Nimiq",
"url": "https://nimiq.com"
},
"homepage": "https://nimiq.com/developers",
"scripts": {
"postinstall": "nuxt prepare",
"dev": "DEPLOYMENT_MODE=development nuxi dev",
"build": "NODE_OPTIONS=--max-old-space-size=4096 DEPLOYMENT_MODE=production nuxi build",
"build:staging": "NODE_OPTIONS=--max-old-space-size=4096 DEPLOYMENT_MODE=staging nuxi build",
"preview": "nuxi preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "nuxi typecheck",
"build:web-client": "typedoc --tsconfig tsconfig.web-client.json --githubPages false --plugin typedoc-plugin-markdown --exclude index.md",
"build:rpc": "tsx scripts/build-rpc.ts",
"update": "npx taze latest --update -w",
"release": "bumpp --commit --tag --push"
},
"dependencies": {
"@iconify-json/carbon": "^1.2.14",
"@iconify/vue": "^5.0.0",
"@nimiq/utils": "^0.12.4",
"@vueuse/core": "^13.9.0",
"agents": "^0.7.5",
"canvas-confetti": "^1.9.4",
"json2md": "^2.0.3",
"medium-zoom": "^1.1.0",
"motion-v": "^1.7.4",
"nimiq-feedback-widget": "0.0.1-beta.5",
"nimiq-rpc-client-ts": "1.0.0-beta.35",
"reka-ui": "^2.6.0",
"vaul-vue": "^0.4.1",
"vue": "^3.5.22"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@apidevtools/json-schema-ref-parser": "^14.2.1",
"@iconify-json/logos": "^1.2.10",
"@iconify-json/tabler": "^1.2.23",
"@iconify-json/vscode-icons": "^1.2.33",
"@iconify/utils": "^3.0.2",
"@nimiq/core": "^2.2.0",
"@nuxt/eslint": "^1.15.2",
"@open-rpc/meta-schema": "^1.14.9",
"@rollup/plugin-terser": "^0.4.4",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^24.9.2",
"bumpp": "^10.3.1",
"consola": "^3.4.2",
"docus": "https://pkg.pr.new/docus@1304",
"eslint": "^9.38.0",
"katex": "^0.16.38",
"lint-staged": "^16.2.6",
"nuxt": "^4.3.1",
"ofetch": "^1.5.0",
"pathe": "^2.0.3",
"pkg-types": "^2.3.0",
"postcss": "^8.5.6",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"sharp": "^0.34.4",
"shiki": "^3.14.0",
"simple-git-hooks": "^2.13.1",
"svgo": "^4.0.0",
"tsx": "^4.20.6",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.5.0",
"wrangler": "^4.45.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"bufferutil",
"es5-ext",
"esbuild",
"sharp",
"simple-git-hooks",
"unrs-resolver",
"utf-8-validate",
"vue-demi",
"workerd",
"@parcel/watcher",
"better-sqlite3"
],
"patchedDependencies": {
"docus@5.7.0": "patches/docus@5.7.0.patch"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,mts,cts,vue,md}": "eslint --fix"
}
}