-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.71 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
59
60
61
62
63
64
65
66
{
"name": "@commercelayer/cli-core",
"version": "5.4.3",
"author": "Pierluigi Viti <[email protected]>",
"license": "MIT",
"description": "Commerce Layer Javascript CLI core lib",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "lib/index.mjs",
"exports": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
},
"scripts": {
"lint": "eslint ./src --ext .ts",
"lintspec": "eslint ./specs/ --ext .spec.ts",
"lint:fix": "eslint src --fix",
"build": "tsup",
"start": "tsx src/index.ts",
"test": "jest --passWithNoTests",
"test-local": "tsx test/spot.ts",
"coverage": "jest --coverage"
},
"keywords": [
"ecommerce",
"jamstack",
"commercelayer"
],
"files": [
"lib/**/*"
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@commercelayer/eslint-config-ts": "^1.4.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"oclif": "^4.16.0",
"semantic-release": "^24.2.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@commercelayer/js-auth": "^6.7.0",
"@oclif/core": "^3.27.0",
"chalk": "^4.1.2",
"jsonwebtoken": "^9.0.2",
"update-notifier-cjs": "^5.1.6"
},
"repository": "github:commercelayer/commercelayer-cli-core",
"publishConfig": {
"access": "public"
}
}