-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.9 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": "@freakzlike/i18n-extract",
"description": "Minimalistic and low dependency translation key extractor",
"version": "1.5.0",
"license": "MIT",
"author": {
"name": "Freakzlike"
},
"homepage": "https://github.com/freakzlike/i18n-extract",
"repository": {
"type": "git",
"url": "git+https://github.com/freakzlike/i18n-extract.git"
},
"bugs": {
"url": "https://github.com/freakzlike/i18n-extract/issues"
},
"type": "module",
"files": [
"bin",
"dist"
],
"main": "./dist/i18n-extract.cjs",
"bin": {
"i18n-extract": "./bin/extract.cjs",
"i18n-check": "./bin/check.cjs"
},
"module": "./dist/i18n-extract.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/i18n-extract.js",
"require": "./dist/i18n-extract.cjs"
}
},
"scripts": {
"build": "rimraf ./dist && rollup -c rollup.config.js --bundleConfigAsCjs",
"test": "vitest --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "pnpm run lint --fix",
"demo:extract": "node bin/extract.cjs examples/namespaces/i18n-extract.config.cjs",
"demo:check": "node bin/check.cjs examples/namespaces/i18n-extract.config.cjs",
"release": "semantic-release --no-ci"
},
"dependencies": {
"fast-glob": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-typescript": "12.1.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "22.10.3",
"@vitest/coverage-v8": "2.1.8",
"eslint": "9.17.0",
"globals": "15.14.0",
"rimraf": "6.0.1",
"rollup": "4.29.1",
"semantic-release": "24.2.0",
"tslib": "2.8.1",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0",
"vite": "6.0.6",
"vitest": "2.1.8"
},
"engines": {
"node": ">=v18.15.0"
}
}