-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.85 KB
/
package.json
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
{
"name": "mincho",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"configs/*",
"packages/*",
"examples/*"
],
"scripts": {
"clean": "turbo run clean",
"build": "turbo run build",
"lint": "yarn lint:action && turbo run lint",
"fix": "yarn fix:action && turbo run fix",
"check": "turbo run check",
"check:all": "turbo run check:all",
"test": "turbo run test",
"test:all": "turbo run test:all",
"coverage": "turbo run coverage",
"coverage:all": "turbo run coverage:all",
"lint:action": "yarn run -T eslint '.github/**/*.{js,yaml,yml}'",
"fix:action": "yarn lint:action --fix",
"forallpackages": "yarn workspaces foreach -Aptv --no-private --verbose",
"build:release": "yarn build && yarn forallpackages exec rimraf _release && yarn forallpackages pack && yarn forallpackages exec \"mkdir _release && tar zxvf package.tgz --directory _release && rm package.tgz\"",
"changeset": "changeset",
"changeset:version": "changeset version",
"publish": "yarn build:release && changeset publish",
"g:clean": "cd $INIT_CWD && yarn run -T rimraf _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:generate": "cd $INIT_CWD && yarn run -T vite-node src/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 . --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"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@mincho-js/debug-log": "workspace:^",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.1",
"@typescript/analyze-trace": "^0.10.1",
"@vanilla-extract/vite-plugin": "^4.0.18",
"@vitest/coverage-v8": "^2.1.8",
"c8": "^10.1.2",
"eslint": "^9.16.0",
"eslint-config-custom": "workspace:^",
"prettier": "^3.4.1",
"prettier-eslint": "^16.3.0",
"rimraf": "6.0.0",
"terser": "^5.36.0",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"vite": "^6.0.2",
"vite-node": "^2.1.8",
"vitest": "^2.1.8"
},
"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"
}
}