-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.39 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.39 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
{
"name": "@intlify/bundle-tools",
"version": "12.0.0-alpha.2",
"author": {
"name": "kazuya kawaguchi",
"email": "kawakazu80@gmail.com"
},
"bugs": {
"url": "https://github.com/intlify/bundle-tools/issues"
},
"type": "module",
"devDependencies": {
"@kazupon/eslint-config": "^0.24.0",
"@kazupon/prettier-config": "^0.2.0",
"@types/node": "catalog:",
"bumpp": "^10.1.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-unicorn": "^57.0.0",
"get-port-please": "^3.1.2",
"jiti": "^2.4.2",
"knip": "^5.56.0",
"lint-staged": "^15.5.2",
"pkg-pr-new": "^0.0.63",
"playwright-core": "^1.52.0",
"prettier": "^3.5.3",
"source-map": "0.6.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.1.3"
},
"license": "MIT",
"prettier": "@kazupon/prettier-config",
"lint-staged": {
"*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint --fix"
],
"*.{js,mjs,cjs}": [
"prettier --write",
"eslint --fix"
],
"*.{json,jsonc,json5,md,yml,yaml}": [
"prettier --write"
]
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/bundle-tools.git"
},
"scripts": {
"prepare": "git config --local core.hooksPath .githooks",
"preinstall": "node ./scripts/preinstall.js",
"check-install": "jiti scripts/playwright.ts",
"release": "bumpp package.json packages/**/package.json --commit \"release: v\" --push --tag",
"clean": "git clean -fdx",
"build": "pnpm run --stream --sequential --color \"/^build:(utils|unplugin)/\"",
"build:utils": "pnpm --filter @intlify/bundle-utils build",
"build:unplugin": "pnpm --filter @intlify/unplugin-vue-i18n build",
"build:example": "pnpm build && pnpm run --stream --sequential --color \"/^build:example:/\"",
"build:example:vite": "pnpm --filter vite-example build",
"build:example:webpack": "pnpm --filter webpack-example build",
"build:example:rspack": "pnpm --filter rspack-example build",
"play:vite": "pnpm --filter vite-example dev",
"play:webpack": "pnpm --filter webpack-example dev",
"play:rspack": "pnpm --filter rspack-example dev",
"fix": "pnpm run --stream --color \"/^fix:/\"",
"fix:eslint": "eslint . --fix",
"fix:prettier": "prettier . --write",
"fix:knip": "knip --fix",
"dev:lint": "pnpx @eslint/config-inspector --config eslint.config.ts",
"lint": "pnpm run --stream --color \"/^lint:/\"",
"lint:eslint": "eslint .",
"lint:prettier": "prettier . --check",
"lint:knip": "knip",
"test": "pnpm test:typecheck && pnpm test:unit && pnpm test:e2e",
"test:typecheck": "tsc --noEmit",
"test:unit": "pnpm run --stream --sequential --color \"/^test:unit:/\"",
"test:unit:utils": "vitest run packages/bundle-utils",
"test:unit:unplugin": "vitest run packages/unplugin-vue-i18n/test",
"test:unit:unplugin:vite": "TEST_FRAMEWORK=vite vitest run packages/unplugin-vue-i18n/test",
"test:unit:unplugin:webpack": "TEST_FRAMEWORK=webpack vitest run packages/unplugin-vue-i18n/test",
"test:unit:unplugin:rspack": "TEST_FRAMEWORK=rspack vitest run packages/unplugin-vue-i18n/test",
"test:e2e": "pnpm check-install && vitest -c ./vitest.e2e.config.ts run",
"test:e2e:unplugin": "pnpm --filter @intlify/unplugin-vue-i18n test:e2e"
},
"packageManager": "pnpm@10.30.1"
}