-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 926 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 926 Bytes
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
{
"name": "@junobuild/plugins",
"version": "4.7.1",
"description": "This repository provides a collection of plugins useful do developing dapps with [Juno](https://juno.build).",
"main": "index.js",
"workspaces": [
"plugins/plugin-tools",
"plugins/vite-plugin",
"plugins/nextjs-plugin"
],
"scripts": {
"build": "npm run build --workspaces",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --max-warnings 0 .",
"test": "vitest"
},
"author": "David Dal Busco (https://daviddalbusco.com)",
"license": "MIT",
"devDependencies": {
"@dfinity/eslint-config-oisy-wallet": "^0.2.4",
"@types/node": "^24.10.2",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=24",
"npm": ">=11.5.1 <12.0.0"
}
}