-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.84 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
{
"name": "@adobe-commerce/aco-ts-sdk",
"version": "1.2.4",
"description": "TypeScript Client SDK for the Adobe Commerce Optimizer API",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git@github.com:adobe-commerce/aco-ts-sdk.git"
},
"author": "Ross Brandon <wbrandon@adobe.com>",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"COPYRIGHT",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "vitest --config vitest.unit.config.ts",
"test:run": "vitest --config vitest.unit.config.ts run",
"test:run:unit": "vitest --config vitest.unit.config.ts run",
"test:run:integration": "vitest --config vitest.integration.config.ts run",
"test:coverage": "vitest --config vitest.unit.config.ts run --coverage",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint:fix": "eslint src/**/*.ts test/**/*.ts --fix",
"format": "prettier --write \"src/**/*.{ts,json}\" \"test/**/*.{ts,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,json}\" \"test/**/*.{ts,json}\""
},
"dependencies": {
"dotenv": "^16.4.7",
"ky": "^1.8.1"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitest/coverage-v8": "^1.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "3.5.3",
"prettier-plugin-jsdoc": "^1.3.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}