@sammy-labs/walkthroughs
Version:
Sammy Labs Walkthroughs
75 lines • 1.9 kB
JSON
{
"name": "@sammy-labs/walkthroughs",
"version": "0.2.24",
"description": "Sammy Labs Walkthroughs",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"style": "dist/index.css",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./dist/index.css": "./dist/index.css"
},
"license": "MIT",
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"autoprefixer": "^10.4.14",
"concurrently": "^9.1.2",
"cssnano": "^7.0.6",
"postcss": "^8.5.1",
"postcss-class-prefix": "^0.3.0",
"postcss-cli": "^11.0.0",
"postcss-prefix-selector": "^2.1.0",
"tailwindcss": "^3.4.17",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/SammyClub/package.git"
},
"keywords": [
"walkthrough",
"onboarding",
"guided-tours"
],
"author": {
"name": "Sammy Labs Team",
"email": "founders@sammylabs.com",
"url": "https://sammylabs.com"
},
"bugs": {
"url": "https://github.com/SammyClub/package/issues"
},
"homepage": "https://github.com/SammyClub/package",
"dependencies": {
"@types/react-dom": "^18.0.0",
"uuid": "^11.1.0"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:js && npm run build:css",
"build:js": "tsup src/index.tsx --format cjs,esm --dts --external react --external react-dom",
"build:css": "postcss src/index.css -o dist/index.css --verbose",
"dev": "concurrently \"npm run build:js -- --watch\" \"npm run build:css -- --watch\"",
"typecheck": "tsc --noEmit"
}
}