-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.75 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.75 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
{
"name": "scripts",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"clean": "turbo run clean",
"build": "turbo run build ${TURBO_FILTER:+-F=$TURBO_FILTER}",
"postbuild": "is-ci && concurrently -m 1 --timings npm:postbuild:*",
"build:caddyfile": "turbo run build -F='./apps/caddyfile-sdk'",
"build:monkey": "turbo run build -F='./apps/monkey/*'",
"postbuild:monkey": "is-ci && tsx ./etc/move_monkey_scripts.ts",
"build:qinglong": "turbo run build -F='./apps/qinglong'",
"postbuild:qinglong": "is-ci && tsx ./etc/move_qinglong_scripts.ts",
"lint": "concurrently -m 1 --timings npm:lint:*",
"lint:syncpack": "syncpack lint",
"lint:monorepo": "turbo run lint ${TURBO_FILTER:+-F=$TURBO_FILTER}",
"test": "turbo run test ${TURBO_FILTER:+-F=$TURBO_FILTER}",
"fix": "concurrently -m 1 --timings npm:fix:*",
"fix:syncpack": "syncpack fix",
"fix:formatter": "turbo run fix:formatter",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"keywords": [],
"author": "Arylo Yeung <arylo.open@gmail.com>",
"homepage": "https://github.com/Arylo/scripts#readme",
"bugs": {
"url": "https://github.com/Arylo/scripts/issues"
},
"license": "MIT",
"engines": {
"node": "24.12.0"
},
"packageManager": "npm@11.6.2",
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@vitest/coverage-v8": "^4.1.4",
"concurrently": "^8.2.2",
"is-ci": "^4.1.0",
"syncpack": "^14.3.0",
"tsx": "^4.21.0",
"turbo": "^2.4.4",
"typescript": "~5.9.3"
},
"workspaces": [
"packages/*/*",
"apps/caddyfile-sdk",
"apps/monkey/*",
"apps/cf-worker/*",
"apps/qinglong"
]
}