-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.32 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 3.32 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
{
"name": "circle-flags-ui",
"version": "0.0.0",
"private": true,
"description": "Monorepo for circle-flags UI components across multiple frameworks",
"type": "module",
"scripts": {
"gen": "node scripts/gen.mjs",
"sync:examples": "node scripts/sync-example-shared.mjs",
"gen:flags": "node scripts/gen-flags.mjs",
"bump": "node scripts/bump-version.mjs",
"bump:patch": "node scripts/bump-version.mjs --no-interactive --type patch",
"bump:minor": "node scripts/bump-version.mjs --no-interactive --type minor",
"bump:major": "node scripts/bump-version.mjs --no-interactive --type major",
"bump:prerelease": "node scripts/bump-version.mjs --no-interactive --type prerelease",
"bump:graduate": "node scripts/bump-version.mjs --no-interactive --type graduate",
"bump:auto": "node scripts/bump-version.mjs --no-interactive --auto-detect --sync-deps",
"postinstall": "node scripts/life-cycle.js postinstall",
"prebuild": "node scripts/life-cycle.js prebuild",
"build": "turbo run build --filter='./packages/*'",
"build:core": "turbo run build --filter=@sankyu/circle-flags-core",
"build:react": "turbo run build --filter=@sankyu/react-circle-flags",
"build:vue": "turbo run build --filter=@sankyu/vue-circle-flags",
"build:solid": "turbo run build --filter=@sankyu/solid-circle-flags",
"dev": "pnpm -r --if-present run dev",
"dev:package": "turbo run dev --filter='./packages/*'",
"dev:website": "pnpm -F './website' run dev",
"dev:examples": "pnpm -r -F './examples/*' --if-present run dev",
"typecheck": "pnpm run gen:flags && turbo run typecheck",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "turbo run test",
"test:package": "turbo run test --filter='./packages/*'",
"test:website": "pnpm -F './website/' run test",
"test:examples": "pnpm -r --if-present -F './examples/*' run test",
"test:core": "turbo run test --filter=@sankyu/circle-flags-core",
"test:react": "turbo run test --filter=@sankyu/react-circle-flags",
"test:vue": "turbo run test --filter=@sankyu/vue-circle-flags",
"test:solid": "turbo run test --filter=@sankyu/solid-circle-flags",
"test:coverage": "turbo run test:coverage --filter='./packages/*'",
"prepare": "lefthook install",
"clean": "rm -rf packages/*/dist packages/*/generated node_modules/.cache"
},
"author": "Sankyu Lab <opensource.sankyu-lab@xmsl.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SanKyu-Lab/circle-flags-ui.git"
},
"bugs": {
"url": "https://github.com/SanKyu-Lab/circle-flags-ui/issues"
},
"homepage": "https://github.com/SanKyu-Lab/circle-flags-ui",
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/node": "^25.6.0",
"commander": "^14.0.3",
"conventional-changelog-conventionalcommits": "^9.3.1",
"conventional-commits-parser": "^6.4.0",
"country-region-data": "^4.1.0",
"lefthook": "^2.1.5",
"oxlint": "^1.60.0",
"prettier": "^3.8.3",
"semver": "^7.7.4",
"simple-git": "^3.36.0",
"turbo": "^2.9.6",
"typescript": "^6.0.2"
}
}