-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "@lokalise/node-core",
"version": "13.1.0",
"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": "^9.3.1",
"pino-pretty": "^11.2.1",
"tslib": "^2.6.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@lokalise/biome-config": "^1.4.0",
"@types/node": "^22.5.2",
"@types/tmp": "^0.2.6",
"@vitest/coverage-v8": "^2.0.5",
"auto-changelog": "^2.4.0",
"pino-test": "^1.0.1",
"tmp": "^0.2.3",
"tsup": "^8.3.0",
"typescript": "^5.5.3",
"vitest": "^2.0.5"
}
}