maxmsp-gui
Version:
React component library for stylised Max MSP GUI.
98 lines (97 loc) • 2.53 kB
JSON
{
"name": "maxmsp-gui",
"version": "2.5.5",
"description": "React component library for stylised Max MSP GUI.",
"author": "Lewis Wolstanholme",
"license": "Creative Commons SA",
"homepage": "https://lewiswolf.github.io/maxmsp-gui/",
"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.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@eslint/js": "^9.39.2",
"@prettier/plugin-xml": "^3.4.2",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"gh-pages": "^6.3.0",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"sass-embedded": "^1.97.1",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^16.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vite": "^7.3.0",
"vite-plugin-compression2": "^2.4.0",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-svgr": "^4.5.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 ./**/*.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
}
}
}