-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.39 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
{
"name": "vite-plugin-native-modules",
"version": "2.4.2",
"description": "A Vite plugin for integrating Node.js native modules into your Vite project",
"keywords": [
"electron",
"electron-vite",
"modules",
"native",
"native-addon",
"native-module",
"native-module-loader",
"node-gyp",
"plugin",
"vite",
"vite-plugin"
],
"homepage": "https://github.com/biw/vite-plugin-native-modules",
"license": "MIT",
"author": "Ben Williams",
"repository": {
"type": "git",
"url": "git+https://github.com/biw/vite-plugin-native-modules.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"lint": "vp check",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "22.18.0",
"acorn": "^8.15.0",
"typescript": "5.9.3",
"vite": "6.2.1",
"vite-plus": "catalog:",
"vite7": "npm:vite@7.3.6",
"vite8": "npm:vite@8.2.1",
"vitest": "^2.1.8"
},
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"packageManager": "pnpm@10.34.5"
}