-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.28 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "quaengine",
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.0.9",
"description": "QuaEngine monorepo with Turborepo, TypeScript, and Vite",
"author": "QuaDevTeam",
"repository": {
"type": "git",
"url": "https://github.com/QuaDevTeam/QuaEngine.git"
},
"license": "Apache-2.0",
"keywords": [
"monorepo",
"turborepo",
"typescript",
"vite"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo build",
"build:affected": "turbo build --filter='...[HEAD^1]'",
"build:core": "turbo build --filter='@quajs/engine' --filter='@quajs/assets' --filter='@quajs/store'",
"dev": "turbo dev",
"dev:novel-writer": "pnpm --filter novel-writer dev",
"lint": "turbo lint",
"lint:affected": "turbo lint --filter='...[HEAD^1]'",
"lint:fix": "turbo lint:fix",
"test": "turbo test --",
"test:affected": "turbo test --filter='...[HEAD^1]'",
"test:unit": "node --experimental-strip-types scripts/run-tests.ts unit",
"test:integration": "node --experimental-strip-types scripts/run-tests.ts integration",
"test:watch": "node --experimental-strip-types scripts/run-tests.ts --watch",
"test:ui": "node --experimental-strip-types scripts/run-tests.ts --ui",
"test:coverage": "turbo test -- --coverage",
"typecheck": "turbo typecheck",
"typecheck:affected": "turbo typecheck --filter='...[HEAD^1]'",
"create-package": "node --experimental-strip-types scripts/create-package.ts",
"npm:packages": "node --experimental-strip-types scripts/npm-packages.ts list",
"npm:bump": "node --experimental-strip-types scripts/npm-packages.ts bump",
"npm:pack": "node --experimental-strip-types scripts/npm-packages.ts pack",
"npm:publish:local": "node --experimental-strip-types scripts/npm-packages.ts publish-local",
"release": "turbo build typecheck test lint && changeset publish",
"release:version": "changeset version",
"release:publish": "changeset publish",
"ci": "turbo build test lint typecheck",
"ci:affected": "turbo build test lint typecheck --filter='...[HEAD^1]'",
"clean": "turbo clean && rm -rf node_modules/.cache/turbo"
},
"workspaces": [
"ai/*",
"packages/build/*",
"packages/core/*",
"packages/game/*",
"packages/platform/*",
"packages/render/*",
"packages/utils/*",
"packages/plugins/*"
],
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@changesets/cli": "^2.31.0",
"@microsoft/api-extractor": "7.58.7",
"@types/mime-types": "catalog:",
"@types/node": "catalog:",
"@types/yauzl": "catalog:",
"@types/yazl": "catalog:",
"@vitest/coverage-v8": "4.1.8",
"@vitest/ui": "^4.1.8",
"conventional-changelog-conventionalcommits": "^9.3.1",
"eslint": "catalog:",
"eslint-plugin-format": "^2.0.1",
"happy-dom": "^20.9.0",
"inquirer": "catalog:",
"playwright": "^1.59.1",
"rollup": "4.60.3",
"turbo": "^2.9.16",
"typescript": "catalog:",
"vite": "catalog:",
"vite-plugin-dts": "catalog:",
"vitest": "^4.1.8"
},
"pnpm": {
"overrides": {
"ajv@>=7.0.0-alpha.0 <9.0.0": "8.20.0",
"minimatch@<3.1.4": "3.1.4",
"qs": "6.15.2",
"tmp": "0.2.7",
"ws": "8.21.0"
},
"patchedDependencies": {}
}
}