-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.61 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.61 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
{
"name": "mincho",
"type": "module",
"private": true,
"packageManager": "yarn@4.9.2",
"workspaces": [
"configs/*",
"packages/*",
"examples/*"
],
"scripts": {
"task": "yarn turbo run --cache-dir .cache/turbo",
"clean": "yarn g:clean && yarn task clean",
"build": "yarn task build",
"build:type": "yarn tsc --build",
"lint": "yarn lint:action & yarn task lint",
"lint:action": "yarn run -T eslint '.github/**/*.{js,yaml,yml}' --cache --cache-location .cache/eslint_action",
"fix": "yarn fix:action && yarn task fix",
"fix:action": "yarn lint:action --fix",
"check": "yarn task check",
"check:all": "yarn task check:all",
"check:peers": "yarn explain peer-requirements | grep -q '✘' && exit 1 || exit 0",
"check:pkgs": "yarn check:peers & yarn constraints",
"sync": "workspaces-to-typescript-project-references --includesRoot --includesLocal",
"sync:check": "yarn sync --check",
"test": "yarn task test",
"test:all": "yarn task test:all",
"coverage": "yarn task coverage",
"coverage:all": "yarn task coverage:all",
"forallpackages": "yarn workspaces foreach -Aptv --no-private --verbose",
"build:release": "PACKAGE_PUBLISH=true yarn build && yarn forallpackages exec \"rimraf _release && yarn pack && mkdir _release && tar zxvf package.tgz --directory _release && rimraf package.tgz\"",
"changeset:version": "yarn changeset version",
"publish": "yarn build:release && changeset publish",
"g:clean": "cd $INIT_CWD && yarn run -T rimraf .cache _release dist coverage .turbo tsconfig.tsbuildinfo node_modules/.vite",
"g:build": "cd $INIT_CWD && yarn run -T vite build",
"g:build-watch": "cd $INIT_CWD && yarn run build --watch",
"g:codegen": "cd $INIT_CWD && yarn run -T vite-node --tsconfig ./tsconfig.codegen.json codegen/index.ts",
"g:test": "cd $INIT_CWD && yarn run -T vitest run",
"g:test-watch": "cd $INIT_CWD && yarn run -T vitest",
"g:coverage": "yarn g:test --coverage",
"g:lint": "cd $INIT_CWD && yarn run -T eslint . --cache --cache-location .cache/eslint --report-unused-disable-directives --max-warnings 0",
"g:fix": "cd $INIT_CWD && yarn g:lint --fix",
"g:check": "cd $INIT_CWD && yarn run -T tsc --noEmit",
"g:check-trace": "cd $INIT_CWD && yarn run -T rimraf tsconfig.tsbuildinfo && yarn run -T tsc -p tsconfig.json --generateTrace traceDir && yarn run -T analyze-trace traceDir"
},
"prettier": "prettier-config-custom",
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.4",
"@mincho-js/debug-log": "workspace:^",
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.11.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.15.30",
"@typescript/analyze-trace": "^0.10.1",
"@vanilla-extract/vite-plugin": "^5.0.4",
"@vitest/coverage-v8": "^3.2.2",
"@yarnpkg/types": "^4.0.1",
"c8": "^10.1.3",
"eslint": "^9.28.0",
"eslint-config-custom": "workspace:^",
"prettier": "^3.5.3",
"prettier-config-custom": "workspace:^",
"prettier-eslint": "^16.4.2",
"rimraf": "6.0.0",
"terser": "^5.41.0",
"tsconfig-custom": "workspace:^",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-node": "^3.2.2",
"vitest": "^3.2.2",
"yarn-constraints-rules": "^0.1.0"
},
"dependencies": {
"tslib": "^2.8.1"
},
"resolutions": {
"csstype@^3.1.3": "patch:csstype@npm%3A3.1.3#./.yarn/patches/csstype-npm-3.1.3-e9a1c85013.patch",
"csstype@^3.0.7": "patch:csstype@npm%3A3.1.3#./.yarn/patches/csstype-npm-3.1.3-e9a1c85013.patch",
"ip": "npm:ip@2.0.1"
}
}