-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"name": "scripts",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"clean": "turbo run clean",
"build": "concurrently npm:build:*",
"build:monkey": "turbo run build -F='./src/monkey/*'",
"postbuild:monkey": "ts-node ./etc/move_monkey_scripts.ts",
"build:qinglong": "turbo run build -F='./src/qinglong'",
"postbuild:qinglong": "ts-node ./etc/move_qinglong_scripts.ts",
"build:readme": "turbo run build -F='./packages/build-scripts/readme-build' && readme-build",
"lint": "concurrently npm:lint:*",
"lint:syncpack": "syncpack lint",
"lint:monorepo": "turbo run lint",
"test": "turbo run test",
"fix": "concurrently 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",
"@scripts/readme-build": "1.0.0",
"@vitest/coverage-v8": "^1.6.0",
"concurrently": "^8.2.2",
"syncpack": "^14.0.0",
"ts-node": "^10.9.2",
"turbo": "^2.4.4",
"typescript": "^5.4.5"
},
"workspaces": [
"packages/*/*",
"src/monkey/*",
"src/qinglong"
]
}