-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
{
"name": "vite-plugin-native",
"version": "2.2.2",
"description": "Supports Node/Electron C/C++ native addons",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": "./*"
},
"repository": "https://github.com/vite-plugin/vite-plugin-native.git",
"author": "Leo Wang(草鞋没号) <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"types": "tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build && npm run test",
"build:test": "vite build -c test/fixtures/vite.config.ts",
"test": "vitest run"
},
"dependencies": {
"@vercel/webpack-asset-relocator-loader": "1.7.3",
"dependencies-tree": "~0.2.0",
"fast-glob": "^3.3.2",
"lib-esm": "~0.4.2",
"node-loader": "^2.0.0",
"webpack": "^5.70.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/node": "^20.14.2",
"better-sqlite3": "^11.0.0",
"fsevents": "^2.3.3",
"serialport": "^12.0.0",
"sqlite3": "^5.1.7",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vite-plugin-utils": "^0.4.3",
"vitest": "^1.6.0"
},
"files": [
"dist"
],
"keywords": [
"vite",
"plugin",
"node",
"electron",
"native",
"addons",
"C/C++"
]
}