-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "@lokalise/node-core",
"version": "8.2.1",
"author": {
"name": "Lokalise",
"url": "https://lokalise.com/"
},
"homepage": "https://github.com/lokalise/node-core",
"repository": {
"type": "git",
"url": "git://github.com/lokalise/node-core.git"
},
"license": "Apache-2.0",
"files": [
"dist/**",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ci": "npm run lint && npm run test:coverage",
"test:update-snapshots": "vitest -u",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"version": "auto-changelog -p && git add CHANGELOG.md",
"prepublishOnly": "npm run build"
},
"dependencies": {
"pino": "^8.16.2",
"undici": "^5.28.2",
"undici-retry": "^3.2.0"
},
"devDependencies": {
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitest/coverage-v8": "^0.34.6",
"auto-changelog": "^2.4.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vitest": "^0.3.9",
"prettier": "^3.0.3",
"typescript": "^5.3.2",
"vitest": "^0.34.6",
"zod": "^3.22.4",
"vite": "4.5.0"
}
}