-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.65 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
{
"name": "@lingo-app/node",
"description": "Lingo API wrapper",
"version": "3.2.0",
"homepage": "https://github.com/lingo-app/lingojs",
"author": "Lingo <info@lingoapp.com> (https://www.lingoapp.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/lingo-app/lingojs.git"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bugs:": "https://github.com/lingo-app/lingojs/issues",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "NODE_OPTIONS=--experimental-vm-modules jest ./test/unitTests",
"integration-test": "NODE_OPTIONS=--experimental-vm-modules jest ./test/integrationTests",
"validate": "prettier --check \"./{src,test}/**/*.ts\" && eslint './{src,test}/**/*.{js,ts}'",
"format": "prettier --write \"./**/*.ts\"",
"setup": "yarn dlx @yarnpkg/sdks vscode"
},
"dependencies": {
"@ctrl/tinycolor": "^4.2.0",
"btoa": "^1.2.1",
"lodash": "^4.17.23",
"query-string": "^7.0.0",
"regenerator-runtime": "^0.14.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/btoa": "^1.2.5",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.13",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"install": "^0.13.0",
"jest": "^30.2.0",
"jest-util": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0"
},
"jest": {
"preset": "ts-jest"
},
"packageManager": "yarn@4.5.0"
}