-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.34 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
{
"name": "@pangram/monorepo",
"description": "",
"version": "0.0.0",
"author": {
"name": "escapace",
"email": "opensource@escapace.com"
},
"bugs": "https://github.com/escapace/pangram/issues",
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@escapace/pnpm-pack": "0.6.1",
"@ls-lint/ls-lint": "2.3.0",
"eslint": "9.31.0",
"eslint-config-escapace": "5.10.1",
"knip": "5.57.1",
"lefthook": "1.11.13",
"prettier": "3.5.3",
"prettier-config-escapace": "1.2.1",
"syncpack": "13.0.4"
},
"engines": {
"pnpm": ">=10.10.0"
},
"files": [
"pnpm-lock.yaml",
"pnpm-workspace.yaml"
],
"homepage": "https://github.com/escapace/pangram#readme",
"license": "MPL-2.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook"
]
},
"private": true,
"repository": "escapace/pangram",
"scripts": {
"build": "pnpm run workspace:build",
"format": "syncpack format --source package.json && eslint --ignore-pattern packages --no-warn-ignored --fix && prettier -uw !packages . && pnpm run workspace:format",
"lint": "ls-lint --config .ls-lint.yaml && knip --no-config-hints && eslint --ignore-pattern packages && pnpm run workspace:lint",
"ls-lint": "ls-lint --config .ls-lint.yaml && pnpm run workspace:ls-lint",
"pack": "pnpm-pack workspace",
"prepare": "lefthook install",
"syncpack": "syncpack fix-mismatches && syncpack set-semver-ranges && syncpack format",
"test": "pnpm run workspace:test",
"typecheck": "pnpm run workspace:typecheck",
"workspace:build": "pnpm run --if-present --workspace-concurrency=4 -r --filter '*' build",
"workspace:format": "pnpm run --if-present --workspace-concurrency=4 -r --filter '*' format",
"workspace:lint": "pnpm run --if-present --workspace-concurrency=4 -r --filter '*' lint",
"workspace:ls-lint": "pnpm run --if-present --workspace-concurrency=4 -r --filter '*' ls-lint",
"workspace:test": "pnpm run --if-present --workspace-concurrency=4 -r --filter '*' test",
"workspace:typecheck": "pnpm run --if-present --workspace-concurrency=4 -r --filter '*' typecheck",
"workspace:update": "pnpm --workspace-concurrency=4 -w -r --filter '*' exec ncu -u --dep prod,dev,peer,optional && pnpm run syncpack"
},
"sideEffects": false,
"type": "module"
}