forked from crowetic/commerce
80 lines
1.5 KiB
JSON
80 lines
1.5 KiB
JSON
{
|
|
"name": "@vercel/commerce-local",
|
|
"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": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"next": "^13",
|
|
"react": "^18",
|
|
"react-dom": "^18"
|
|
},
|
|
"devDependencies": {
|
|
"@taskr/clear": "^1.1.0",
|
|
"@taskr/esnext": "^1.1.0",
|
|
"@taskr/watch": "^1.1.0",
|
|
"@types/node": "^17.0.8",
|
|
"@types/react": "^18.0.14",
|
|
"@types/node-fetch": "2.6.2",
|
|
"lint-staged": "^12.1.7",
|
|
"next": "^13.0.6",
|
|
"prettier": "^2.5.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"taskr": "^1.1.0",
|
|
"taskr-swc": "^0.0.1",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,jsx,ts,tsx,json}": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|