-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.57 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
{
"name": "nimiq-developer-center",
"title": "Nimiq Developer Center",
"type": "module",
"version": "0.0.1-alpha",
"packageManager": "[email protected]",
"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.github.io/developer-center/",
"scripts": {
"dev": "DEPLOYMENT_MODE=development vitepress dev",
"build": "DEPLOYMENT_MODE=production vitepress build",
"build:staging": "DEPLOYMENT_MODE=staging vitepress build",
"preview": "vitepress preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build:web-client": "typedoc --tsconfig tsconfig.web-client.json --githubPages false --plugin typedoc-plugin-markdown --exclude index.md --hideBreadcrumbs",
"update": "npx taze latest --update -w"
},
"dependencies": {
"@iconify/vue": "^4.3.0",
"@nimiq/style": "^0.8.5",
"@unhead/vue": "^1.11.18",
"@unocss/reset": "^65.4.0",
"@vueuse/core": "^12.4.0",
"iconify-icon": "^2.3.0",
"json2md": "^2.0.1",
"jszip": "^3.10.1",
"markdown-it-mathjax3": "^4.3.2",
"medium-zoom": "^1.1.0",
"nimiq-css": "^0.2.91",
"prettier": "^3.4.2",
"radix-vue": "^1.9.12",
"svg-packer": "^0.0.3",
"vaul-vue": "^0.2.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@antfu/eslint-config": "3.14.0",
"@iconify-json/carbon": "^1.2.5",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/nimiq": "https://pkg.pr.new/onmax/nimiq-ui/nimiq-icons@24e0317",
"@iconify-json/ph": "^1.2.2",
"@iconify/utils": "^2.2.1",
"@nimiq/core": "^2.0.6",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.6",
"@unocss/transformer-directives": "^65.4.0",
"consola": "^3.4.0",
"cross-spawn": "^7.0.6",
"eslint": "^9.18.0",
"https-localhost": "^4.7.1",
"knitwork": "^1.2.0",
"lint-staged": "^15.3.0",
"markdown-it": "^14.1.0",
"node-html-parser": "^7.0.1",
"pkg-types": "^1.3.0",
"postcss": "^8.5.0",
"sharp": "^0.33.5",
"simple-git-hooks": "^2.11.1",
"svgo": "^3.3.2",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"unocss": "65.4.0",
"unplugin-auto-import": "^19.0.0",
"unplugin-icons": "^22.0.0",
"unplugin-vue-components": "^28.0.0",
"vite": "6.0.7",
"vite-plugin-image-optimizer": "^1.1.8",
"vite-plugin-vue-devtools": "7.7.0",
"vitepress": "1.5.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint . --fix"
}
}