-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.72 KB
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
{
"name": "@lokalise/node-core",
"version": "14.7.4",
"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"],
"type": "module",
"main": "./dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ci": "npm run lint && npm run test:coverage",
"test:update-snapshots": "vitest -u",
"lint": "biome check . && tsc",
"lint:fix": "biome check --write",
"version": "auto-changelog -p && git add CHANGELOG.md && biome check --write package.json && git add package.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
"dot-prop": "6.0.1",
"pino": "^10.0.0",
"pino-pretty": "^13.1.1",
"tslib": "^2.8.1"
},
"peerDependencies": {
"zod": ">=3.25.76 <5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@lokalise/biome-config": "^2.0.0",
"@types/node": "^25.0.2",
"@types/tmp": "^0.2.6",
"@vitest/coverage-v8": "^3.2.4",
"auto-changelog": "^2.4.0",
"pino-test": "^2.0.0",
"tmp": "^0.2.4",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"zod": "^4.1.12"
}
}