-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.63 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
{
"name": "@ssojet/authkit-monorepo",
"version": "0.1.0",
"private": true,
"description": "SSOJet AuthKit - Production-grade team management UI + webhook-driven SCIM provisioning",
"keywords": ["ssojet", "authkit", "team-management", "scim", "webhooks", "authentication"],
"homepage": "https://github.com/ssojet/ssojet-authkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ssojet/ssojet-authkit.git"
},
"license": "MIT",
"author": "SSOJet Team",
"type": "module",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"prepare-npm": "node prepare-npm.js",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
"test": "turbo run test",
"test:e2e": "playwright test",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@playwright/test": "^1.42.1",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.5",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"packageManager": "pnpm@8.15.4",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}