maxmsp-gui
Version:
React component library for stylised Max MSP GUI.
87 lines (86 loc) • 2.45 kB
JSON
{
"name": "maxmsp-gui",
"version": "2.5.3",
"description": "React component library for stylised Max MSP GUI.",
"author": "Lewis Wolstanholme",
"license": "Creative Commons SA",
"repository": {
"type": "git",
"url": "git+https://github.com/lewiswolf/maxmsp-gui.git"
},
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=10"
},
"keywords": ["cycling74", "max msp", "maxmsp"],
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@eslint/js": "^9.29.0",
"@prettier/plugin-xml": "^3.4.1",
"@types/node": "^24.0.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react-swc": "^3.10.2",
"eslint": "^9.29.0",
"eslint-plugin-react-hooks": "^5.2.0",
"gh-pages": "^6.3.0",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"sass": "^1.89.2",
"stylelint": "^16.20.0",
"stylelint-config-standard-scss": "^15.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"vite": "^6.3.5",
"vite-plugin-compression2": "^2.0.1",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-svgr": "^4.3.0"
},
"files": ["dist"],
"scripts": {
"build": "tsc && vite build",
"dev": "vite build --watch",
"predeploy": "npm run build && cd example && npm run build",
"deploy": "gh-pages -d example/dist",
"example": "cd example && npm run dev",
"format": "biome format --write && prettier --write ./**/*.html ./**/*.md ./**/*.scss ./**/*.svg",
"test": "tsc && biome lint && eslint . && stylelint **/*.css **/*.scss"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "strict",
"jsxSingleQuote": true,
"plugins": ["@prettier/plugin-xml"],
"printWidth": 125,
"quoteProps": "as-needed",
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": true,
"xmlQuoteAttributes": "single",
"xmlSortAttributesByKey": true,
"xmlWhitespaceSensitivity": "preserve"
},
"stylelint": {
"extends": "stylelint-config-standard-scss",
"ignoreFiles": ["**/dist/**"],
"rules": {
"declaration-empty-line-before": null,
"no-descending-specificity": null,
"property-no-vendor-prefix": null,
"scss/double-slash-comment-empty-line-before": null
}
}
}