-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "@guestlinelabs/onekey",
"version": "4.1.1",
"description": "Utility to download translations from the [OneSky](https://www.oneskyapp.com/) and generate typed keys in Typescript for having typed translations.",
"bin": {
"onekey": "lib/cli.js"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run clean && npm run lint",
"build": "tsc",
"prepare": "npm run build",
"lint": "biome check --write .",
"start": "cross-env TS_NODE_FILES=true node-dev -r ts-node/register src/cli.ts",
"test": "vitest --run",
"test:watch": "vitest"
},
"keywords": [],
"author": "Guestline",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/md5": "^2.3.5",
"@types/nock": "^11.1.0",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"cross-env": "^7.0.3",
"md5": "^2.3.0",
"nock": "^14.0.0-beta.19",
"node-dev": "^8.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"prettier": "2 || 3"
},
"dependencies": {
"@guestlinelabs/onesky-utils": "^2.0.1",
"yargs": "^17.7.2",
"zod": "^3.14.3"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guestlinelabs/onekey.git"
},
"bugs": {
"url": "https://github.com/guestlinelabs/onekey/issues"
},
"homepage": "https://github.com/guestlinelabs/onekey#readme"
}