forked from crowetic/commerce
81 lines
1.6 KiB
JSON
81 lines
1.6 KiB
JSON
|
{
|
||
|
"name": "@vercel/commerce-sfcc",
|
||
|
"version": "0.0.1",
|
||
|
"license": "MIT",
|
||
|
"scripts": {
|
||
|
"release": "taskr release",
|
||
|
"build": "taskr build",
|
||
|
"dev": "taskr",
|
||
|
"types": "tsc --emitDeclarationOnly",
|
||
|
"prettier-fix": "prettier --write ."
|
||
|
},
|
||
|
"sideEffects": false,
|
||
|
"type": "module",
|
||
|
"exports": {
|
||
|
".": "./dist/index.js",
|
||
|
"./*": [
|
||
|
"./dist/*.js",
|
||
|
"./dist/*/index.js"
|
||
|
],
|
||
|
"./next.config": "./dist/next.config.cjs"
|
||
|
},
|
||
|
"typesVersions": {
|
||
|
"*": {
|
||
|
"*": [
|
||
|
"src/*",
|
||
|
"src/*/index"
|
||
|
],
|
||
|
"next.config": [
|
||
|
"dist/next.config.d.cts"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"files": [
|
||
|
"dist"
|
||
|
],
|
||
|
"publishConfig": {
|
||
|
"typesVersions": {
|
||
|
"*": {
|
||
|
"*": [
|
||
|
"dist/*.d.ts",
|
||
|
"dist/*/index.d.ts"
|
||
|
],
|
||
|
"next.config": [
|
||
|
"dist/next.config.d.cts"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@vercel/commerce": "^0.0.1",
|
||
|
"@vercel/fetch": "^6.1.1",
|
||
|
"commerce-sdk": "^2.7.0"
|
||
|
},
|
||
|
"peerDependencies": {
|
||
|
"next": "^12",
|
||
|
"react": "^17",
|
||
|
"react-dom": "^17"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@taskr/clear": "^1.1.0",
|
||
|
"@taskr/esnext": "^1.1.0",
|
||
|
"@taskr/watch": "^1.1.0",
|
||
|
"@types/node": "^17.0.8",
|
||
|
"@types/react": "^17.0.38",
|
||
|
"lint-staged": "^12.1.7",
|
||
|
"next": "^12.0.8",
|
||
|
"prettier": "^2.5.1",
|
||
|
"react": "^17.0.2",
|
||
|
"react-dom": "^17.0.2",
|
||
|
"taskr": "^1.1.0",
|
||
|
"taskr-swc": "^0.0.1",
|
||
|
"typescript": "^4.5.4"
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"**/*.{js,jsx,ts,tsx,json}": [
|
||
|
"prettier --write",
|
||
|
"git add"
|
||
|
]
|
||
|
}
|
||
|
}
|