-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.57 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
{
"name": "pseudolocale",
"version": "2.0.0",
"description": "Simple pseudolocale (psuedolocalization) for strings",
"keywords": [
"localization",
"pseudolocale"
],
"author": "Martin Cerny <[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/MartinCerny-awin/pseudolocale"
},
"bin": "./dist/cli.mjs",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"./package.json": "./package.json"
},
"license": "MIT",
"scripts": {
"build": "unbuild",
"prepublishOnly": "npm run build",
"test": "jest",
"lint:types": "tsc",
"prettier:check": "prettier --check '**/*.{ts,tsx}'",
"lint": "eslint 'src/**/*.{js,ts,tsx}' && prettier -c {src,.}/**/*.ts --write && npm run lint:types"
},
"dependencies": {
"commander": "^10.0.0"
},
"files": [
"Readme.md",
"dist/"
],
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "16.18.18",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"prettier": "^2.1.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"unbuild": "^1.2.0"
}
}