-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
56 lines (56 loc) · 1.27 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
{
"name": "@lokalise/node-api",
"version": "12.8.0",
"description": "Official Lokalise API 2.0 Node.js client",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/lokalise/node-lokalise-api.git"
},
"keywords": [
"api",
"node",
"typescript",
"lokalise",
"client",
"client library"
],
"type": "module",
"scripts": {
"build": "tsup",
"test": "vitest run --coverage",
"test:watch": "vitest watch",
"lint": "npx @biomejs/biome check ./",
"lint:fix": "npx @biomejs/biome check --write ./",
"lint:fix:unsafe": "npx @biomejs/biome check --write --unsafe ./"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^22.0.2",
"@types/sinon": "^17.0.1",
"@vitest/coverage-istanbul": "^2.0.3",
"dotenv": "^16.0.0",
"sinon": "^19.0.0",
"tsup": "^8.3.0",
"typescript": "^5.0.0",
"undici": "^6.0.0",
"vitest": "^2.0.3"
},
"bugs": {
"url": "https://github.com/lokalise/node-lokalise-api/issues"
},
"homepage": "https://lokalise.github.io/node-lokalise-api",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"directories": {
"lib": "./src",
"test": "./test"
},
"author": "Lokalise group, Ilya Krukowski",
"engines": {
"node": ">=18"
}
}