-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1022 Bytes
/
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
{
"name": "@geprog/translator",
"version": "0.0.0-semantic-release",
"description": "A simple cli for translations",
"homepage": "https://geprog.com",
"repository": "github:geprog/translator",
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./cli": "./bin/translator.mjs"
},
"types": "./dist/index.d.ts",
"bin": {
"translator": "./bin/translator.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "unbuild",
"translator": "node --enable-source-maps ./bin/translator.mjs",
"prepack": "unbuild",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"release": "semantic-release"
},
"devDependencies": {
"@geprog/semantic-release-config": "^2.0.0",
"@types/node": "^20.8.9",
"citty": "^0.1.6",
"consola": "^3.2.3",
"prettier": "^3.2.5",
"semantic-release": "^22.0.6",
"typescript": "^5.4.5",
"unbuild": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}