-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
92 lines (92 loc) · 2.74 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
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
87
88
89
90
91
92
{
"name": "vite-plugin-terminal",
"version": "1.2.0",
"description": "Log in the node terminal from the browser",
"keywords": [
"vite-plugin"
],
"homepage": "https://github.com/patak-dev/vite-plugin-terminal#readme",
"bugs": {
"url": "https://github.com/patak-dev/vite-plugin-terminal/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patak-dev/vite-plugin-terminal.git"
},
"funding": "https://github.com/sponsors/patak-dev",
"license": "MIT",
"author": "Matias Capeletto <[email protected]>",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./client": {
"types": "./client.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"*.d.ts",
"LICENSE"
],
"scripts": {
"build": "rimraf dist && run-s build:*",
"build:js": "unbuild",
"play:basic": "npm -C playground/basic run dev",
"play:basic:build": "npm -C playground/basic run build",
"play:basic:preview": "npm -C playground/basic run preview",
"play:console": "npm -C playground/console run dev",
"play:console:build": "npm -C playground/console run build",
"play:console:preview": "npm -C playground/console run preview",
"play:autoimport": "npm -C playground/autoimport run dev",
"play:autoimport:build": "npm -C playground/autoimport run build",
"play:autoimport:preview": "npm -C playground/autoimport run preview",
"play:vue": "npm -C playground/vue run dev",
"play:vue:build": "npm -C playground/vue run build",
"play:vue:preview": "npm -C playground/vue run preview",
"dev:js": "nr build:js --watch src",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test": "vitest",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --push --tag && npm publish"
},
"dependencies": {
"@rollup/plugin-strip": "^3.0.2",
"debug": "^4.3.4",
"kolorist": "^1.7.0",
"sirv": "^2.0.2",
"ufo": "^1.1.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.3",
"@antfu/ni": "^0.20.0",
"@antfu/utils": "^0.7.2",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.14.2",
"@vitejs/plugin-vue": "^4.5.2",
"bumpp": "^9.0.0",
"eslint": "^8.35.0",
"esno": "^0.16.3",
"npm-run-all": "^4.1.5",
"rimraf": "^4.1.2",
"typescript": "^4.9.5",
"unbuild": "^1.1.2",
"unplugin-auto-import": "^0.15.0",
"vite": "^5.0.6",
"vitest": "^0.29.2",
"vue": "^3.2.47"
},
"peerDependencies": {
"vite": "^2.0.0||^3.0.0||^4.0.0||^5.0.0"
},
"engines": {
"node": ">=14"
}
}