-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.14 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
{
"name": "@routup/basic",
"version": "3.0.0",
"type": "module",
"description": "A basic plugin, which includes the body, cookie & query plugin.",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./body": {
"types": "./dist/body.d.mts",
"import": "./dist/body.mjs"
},
"./cookie": {
"types": "./dist/cookie.d.mts",
"import": "./dist/cookie.mjs"
},
"./query": {
"types": "./dist/query.d.mts",
"import": "./dist/query.mjs"
}
},
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:js": "rimraf ./dist && tsdown",
"build:types": "tsc --noEmit -p tsconfig.build.json",
"test": "vitest run --config ./test/vitest.config.ts",
"test:coverage": "vitest run --config ./test/vitest.config.ts --coverage",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix"
},
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"license": "MIT",
"keywords": [
"body",
"cookie",
"query",
"api",
"rest",
"http",
"router",
"api-router",
"route",
"routing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/routup/plugins.git",
"directory": "packages/basic"
},
"bugs": {
"url": "https://github.com/routup/plugins/issues"
},
"homepage": "https://github.com/routup/plugins#readme",
"peerDependencies": {
"routup": "^6.0.0"
},
"dependencies": {
"@routup/body": "^4.0.0",
"@routup/cookie": "^4.0.0",
"@routup/query": "^4.0.0"
},
"devDependencies": {
"routup": "^6.0.0"
},
"gitHead": "94d729e309c1eec0401afb4d8083f65ce3aa8e0b",
"publishConfig": {
"access": "public"
}
}