-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.06 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "vite-plugin-node-browser",
"type": "module",
"version": "0.0.6",
"packageManager": "pnpm@8.12.1",
"description": "vite plugin.",
"license": "MIT",
"homepage": "https://github.com/xparcai/vite-plugin-node-browser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xparcai/vite-plugin-node-browser.git"
},
"bugs": {
"url": "https://github.com/xparcai/vite-plugin-node-browser/issues"
},
"keywords": [
"vite",
"vite-plugin"
],
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.cjs",
"require": "./src/index.cjs"
},
"./*": "./*"
},
"main": "src/index.cjs",
"module": "src/index.cjs",
"types": "src/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./src/*",
"./*"
]
}
},
"files": [
"src"
],
"engines": {
"node": "18.x || 20.x"
},
"scripts": {
"release": "bumpp && npm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "npx simple-git-hooks",
"precommit": "esno verify-commit.ts",
"deps": "nr deps:patch",
"deps:patch": "taze patch -wri -x eslint,@antfu/eslint-config",
"deps:minor": "taze minor -wri -x eslint,@antfu/eslint-config",
"deps:major": "taze major -wri -x eslint,@antfu/eslint-config",
"clean": "nr clean:deps",
"clean:deps": "rimraf node_modules"
},
"dependencies": {
"@rollup/plugin-inject": "^5.0.5",
"node-stdlib-browser": "^1.2.0",
"vite": "^5.0.10"
},
"devDependencies": {
"@antfu/eslint-config": "2.3.4",
"@types/node": "^20.10.5",
"bumpp": "^9.2.1",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"eslint": "8.55.0",
"esno": "^4.0.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.0",
"typescript": "^5.3.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm dlx lint-staged",
"commit-msg": "pnpm run precommit"
},
"lint-staged": {
"*": "pnpm run lint:fix"
}
}