-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.6 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
{
"version": "1.0.0",
"name": "@authup/adapters",
"private": true,
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"files": [],
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"keywords": [
"auth",
"authentication",
"authorization",
"plugins",
"ldap"
],
"repository": {
"type": "git",
"url": "git+https://github.com/authup/adapters.git"
},
"bugs": {
"url": "https://github.com/authup/adapters/issues"
},
"homepage": "https://github.com/authup/adapters#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-swc": "^0.4.0",
"@swc/core": "^1.15.17",
"@tada5hi/commitlint-config": "^1.2.7",
"@tada5hi/eslint-config-typescript": "^1.2.18",
"@tada5hi/tsconfig": "^0.7.0",
"@types/node": "^25.3.2",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nx": "^22.5.3",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"typescript": "5.9.3",
"workspaces-publish": "^1.7.0"
},
"scripts": {
"build": "npx nx run-many -t build",
"test": "npx nx run-many -t test",
"lint": "eslint --ext .ts ./packages",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky"
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}