-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.57 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.57 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
{
"name": "vite-plugin-v8-bytecode",
"version": "0.0.1",
"description": "A Vite plugin for compiling JavaScript to V8 bytecode for Node.js and Electron applications",
"author": "Ben Williams",
"license": "MIT",
"homepage": "https://github.com/biw/vite-plugin-v8-bytecode",
"packageManager": "yarn@4.10.3",
"repository": {
"type": "git",
"url": "git+https://github.com/biw/vite-plugin-v8-bytecode.git"
},
"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"
}
},
"files": [
"dist"
],
"workspaces": [
"examples/*"
],
"keywords": [
"vite",
"plugin",
"native",
"modules",
"node-gyp",
"native-module",
"native-addon",
"native-module-loader",
"electron",
"electron-vite"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"dependencies": {
"@babel/core": "^7.28.5",
"magic-string": "^0.30.21"
},
"devDependencies": {
"@babel/types": "^7.28.5",
"@eslint/js": "^9.39.1",
"@types/babel__core": "^7.20.5",
"@types/node": "22.18.0",
"electron": "^39.1.0",
"eslint": "9.39.1",
"tsup": "8.5.0",
"typescript": "5.9.3",
"typescript-eslint": "8.46.3",
"vite": "7.2.1",
"vitest": "^4.0.7"
}
}