-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.8 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
{
"name": "root",
"private": true,
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"license": "MIT",
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"keywords": [
"api",
"rest",
"http",
"router",
"api-router",
"route",
"routing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/routup/plugins.git"
},
"bugs": {
"url": "https://github.com/routup/plugins/issues"
},
"homepage": "https://github.com/routup/plugins#readme",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@swc/core": "^1.15.24",
"@tada5hi/commitlint-config": "^1.3.1",
"@tada5hi/eslint-config": "^2.0.2",
"@tada5hi/tsconfig": "^0.7.2",
"@types/node": "^25.5.2",
"@types/supertest": "^7.2.0",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"nx": "^22.1.2",
"rimraf": "^6.1.2",
"supertest": "^7.1.4",
"tsdown": "^0.21.5",
"typescript": "6.0.2",
"typescript-eslint": "^8.58.1",
"unplugin-swc": "^1.5.9",
"vitest": "^4.1.4",
"workspaces-publish": "^1.5.0"
},
"lint-staged": {
"packages/*/src/**/*.ts": "eslint"
},
"scripts": {
"commit": "npx git-cz",
"build": "npx nx run-many -t build",
"test": "npx nx run-many -t test",
"test:coverage": "npx nx run-many -t test:coverage",
"lint": "eslint ./packages/",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky"
},
"peerDependencies": {
"routup": "^5.0.0-beta.4"
}
}