-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "@shieldswap/vite-plugin-aztec",
"version": "0.0.2",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"publishConfig": {
"types": "dist/index.d.ts",
"access": "public"
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "pnpm _chore && tsc -w",
"build": "pnpm _chore && rm -rf dist && tsc",
"test": "pnpm test:lint && pnpm test:unit",
"test:unit": "pnpm _chore && vitest run",
"test:lint": "pnpm _chore && tsc --noEmit --emitDeclarationOnly false && prettier --check .",
"test:lint:fix": "pnpm _chore && prettier --write .",
"prepublishOnly": "pnpm test:lint && pnpm build",
"_chore": "pnpm i"
},
"dependencies": {
"picocolors": "^1.1.0",
"vite-plugin-node-polyfills": "0.17.0",
"vite-plugin-resolve": "^2.5.1"
},
"peerDependencies": {
"vite": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.5.3",
"prettier": "^3.2.5",
"typescript": "^5.5.2",
"vite": "^5.4.3"
},
"license": "MIT",
"description": "Vite plugin for Aztec",
"keywords": [
"vite",
"aztec",
"plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ShieldSwap/vite-plugin-aztec.git"
}
}