-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.89 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
62
63
64
65
66
67
68
69
70
71
{
"name": "pachca",
"version": "1.0.1",
"description": "Клиент для работы с API Пачки с поддержкой TypeScript",
"type": "module",
"files": [
"dist"
],
"private": false,
"main": "./dist/pachca.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui --coverage.enabled=true",
"coverage": "vitest run --coverage",
"lint": "eslint --ext .ts .",
"typecheck": "tsc && vitest typecheck --run",
"release": "pnpm run build && changeset publish"
},
"keywords": [
"pachca",
"Пачка",
"typescript",
"api",
"client"
],
"author": "Andrei Bobkov <slider7259@gmail.com>",
"license": "GPL-3.0-only",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@commitlint/load": "^17.8.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"acorn": "^8.10.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-sonarjs": "^0.21.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.3",
"msw": "^1.3.2",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
},
"homepage": "https://github.com/MonsterDeveloper/pachca",
"repository": {
"type": "git",
"url": "https://github.com/MonsterDeveloper/pachca.git"
},
"bugs": {
"url": "https://github.com/MonsterDeveloper/pachca/issues"
}
}