-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "pyotr",
"version": "1.2.2",
"description": "A tiny (< 2kb) HTTP wrapper with inbuilt routing and middleware support.",
"type": "module",
"author": "TheCommieAxolotl",
"main": "dist/index.cjs",
"module": "dist/index.js",
"sideEffects": false,
"license": "MIT",
"packageManager": "[email protected]",
"keywords": [
"http",
"https",
"web",
"server",
"router",
"middleware",
"express",
"pyotr"
],
"files": [
"dist",
"tsconfig.json",
"index.d.ts",
"aura.d.ts"
],
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/TheCommieAxolotl/pyotr.git"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest",
"test:run": "node ./test/standalone.run.js"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./aura": {
"require": "./dist/aura.cjs",
"import": "./dist/aura.js"
}
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@types/node": "^20.4.5",
"rollup": "^3.27.0",
"terser": "^5.19.2",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"vite": "^4.4.7",
"vite-plugin-dts": "^3.4.0",
"vite-plugin-tsconfig-paths": "^1.3.1",
"vitest": "^0.33.0"
}
}