-
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.73 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.73 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": "permissions-workspace",
"version": "0.0.0",
"private": true,
"description": "Workspace root for @nestm/permissions — Cedar-backed, policy-based authorization for NestJS.",
"license": "BSD-3-Clause",
"author": "nestm",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/nestm-dev/permissions.git"
},
"homepage": "https://github.com/nestm-dev/permissions#readme",
"bugs": {
"url": "https://github.com/nestm-dev/permissions/issues"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@11.24.0",
"scripts": {
"build": "pnpm --filter \"./packages/*\" run build",
"clean": "node scripts/clean.mjs",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"format": "prettier --write . --ignore-unknown",
"format:check": "prettier --check . --ignore-unknown",
"typecheck": "tsc -b",
"typecheck:clean": "tsc -b --clean",
"test": "vitest run && pnpm --filter \"./packages/*\" run test",
"test:scripts": "vitest run",
"test:packages": "pnpm --filter \"./packages/*\" run test",
"check": "pnpm run lint && pnpm run format:check && pnpm run typecheck",
"verify:pack": "pnpm run build && pnpm --filter \"./packages/*\" exec publint --strict",
"assert:core-framework-free": "node scripts/assert-core-framework-free.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "node scripts/publish.mjs"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@changesets/cli": "3.0.1",
"@types/node": "26.4.0",
"@vitest/coverage-v8": "4.1.11",
"oxlint": "1.80.0",
"oxlint-tsgolint": "7.0.2001",
"prettier": "3.9.6",
"publint": "0.3.24",
"tsdown": "0.22.14",
"typescript": "7.0.2",
"vitest": "4.1.11"
}
}