-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.27 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
93
94
95
{
"name": "vite-plugin-fs",
"version": "1.1.0",
"description": "Interact with fs from the browser in dev mode",
"author": "StarLederer",
"license": "MIT",
"funding": "https://github.com/sponsors/StarLederer",
"homepage": "https://github.com/StarLederer/vite-plugin-fs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/StarLederer/vite-plugin-fs.git"
},
"bugs": {
"url": "https://github.com/StarLederer/vite-plugin-fs/issues"
},
"keywords": [
"vite",
"plugin",
"fs",
"api",
"middleware",
"files",
"file",
"writer",
"backend",
"sever"
],
"sideEffects": false,
"exports": {
".": {
"types": "./lib/plugin/index.d.ts",
"require": "./lib/plugin/index.js",
"import": "./lib/plugin/index.mjs"
},
"./browser": {
"types": "./lib/abstraction/index.d.ts",
"require": "./lib/abstraction/index.js",
"import": "./lib/abstraction/index.mjs"
}
},
"main": "lib/plugin/index.js",
"module": "lib/plugin/index.mjs",
"types": "lib/plugin/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=14"
},
"typesVersions": {
"*": {
"browser": [
"./lib/abstraction/index.d.ts"
]
}
},
"scripts": {
"prepack": "pnpm run build",
"dev": "pnpm run build --watch",
"build": "tsup",
"test": "jest",
"lint": "eslint ."
},
"devDependencies": {
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jest": "^27.5.2",
"@types/koa": "^2.13.10",
"@types/koa-bodyparser": "^4.3.11",
"@types/koa-router": "^7.4.6",
"@types/koa__cors": "^3.3.1",
"@types/node-fetch": "^2.6.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.2",
"eslint-plugin-import": "^2.29.0",
"jest": "^27.5.1",
"node-fetch": "^2.7.0",
"rimraf": "^3.0.2",
"rollup": "^3.29.4",
"ts-jest": "^27.1.5",
"tsup": "^5.12.9",
"typescript": "^4.9.5",
"vite": "^4.5.0"
},
"dependencies": {
"@koa/cors": "^3.4.3",
"get-port": "^5.1.1",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-router": "^10.1.1"
}
}