-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.36 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
{
"name": "@ecommaps/storefront-kit",
"version": "0.1.0",
"description": "Reusable storefront business logic utilities for Ecommaps.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"package.json"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"typecheck": "tsc --noEmit",
"pack:dry-run": "npm pack --dry-run --workspaces=false",
"lint": "eslint src/",
"clean": "rm -rf dist node_modules"
},
"devDependencies": {
"@types/node": "^25.3.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/labobankcom/ecommaps-storefront-kit.git"
},
"bugs": {
"url": "https://github.com/labobankcom/ecommaps-storefront-kit/issues"
},
"homepage": "https://github.com/labobankcom/ecommaps-storefront-kit#readme",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@10.28.0"
}