generated from escapace/typescript-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.27 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
{
"name": "@cassiopeia/monorepo",
"description": "",
"version": "0.0.0",
"author": {
"name": "escapace",
"email": "opensource@escapace.com"
},
"bugs": "https://github.com/escapace/cassiopeia/issues",
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@escapace/pnpm-pack": "0.8.0",
"@ls-lint/ls-lint": "2.3.1",
"eslint": "9.36.0",
"eslint-config-escapace": "5.14.0",
"knip": "5.64.0",
"lefthook": "1.13.4",
"prettier": "3.6.2",
"prettier-config-escapace": "1.2.2",
"syncpack": "13.0.4"
},
"engines": {
"pnpm": "^10.14.0"
},
"files": [
"pnpm-lock.yaml",
"pnpm-workspace.yaml"
],
"homepage": "https://github.com/escapace/cassiopeia#readme",
"license": "MPL-2.0",
"private": true,
"repository": "escapace/cassiopeia",
"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 -rw --filter '*' --workspace-concurrency=4 exec ncu -u --peer --dep dev,peer,prod,optional && pnpm run syncpack"
},
"sideEffects": false,
"type": "module"
}