-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.51 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
{
"name": "@labdigital/intl-extractor",
"version": "2.5.0",
"license": "MIT",
"author": "Lab Digital",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"intl-extractor": "./dist/bin/cli.js"
},
"packageManager": "pnpm@10.24.0",
"scripts": {
"build": "tsdown",
"check": "pnpm lint && tsc",
"format": "pnpm biome format --write",
"lint": "pnpm biome check",
"publish:ci": "pnpm build && pnpm changeset publish",
"publish:version": "pnpm changeset version && pnpm format",
"test": "vitest run",
"test:ci": "vitest run --coverage"
},
"dependencies": {
"@biomejs/biome": "^2.0.0",
"@typescript/typescript6": "6.0.2",
"glob": "11.1.0",
"yargs": "^18.0.0"
},
"peerDependencies": {
"@parcel/watcher": "2.5.1"
},
"peerDependenciesMeta": {
"@parcel/watcher": {
"optional": true
}
},
"devDependencies": {
"@changesets/cli": "2.29.4",
"@parcel/watcher": "2.5.1",
"@types/node": "24.0.3",
"@types/yargs": "17.0.33",
"@vitest/coverage-v8": "3.2.6",
"tsdown": "^0.12.8",
"typescript": "5.8.3",
"vitest": "3.2.6"
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/labd/intl-extractor.git"
},
"bugs": {
"url": "https://github.com/labd/intl-extractor/issues"
},
"homepage": "https://github.com/labd/intl-extractor#readme"
}