stash/pkg/plugin/examples/react-component/package.json
WithoutPants b915428f06
UI Plugin API (#4256)
* Add page registration
* Add example plugin
* First version of proper react plugins
* Make reference react plugin
* Add patching functions
* Add tools link poc
* NavItem poc
* Add loading hook for lazily loaded components
* Add documentation
2023-11-28 13:06:44 +11:00

21 lines
587 B
JSON

{
"name": "react-component",
"version": "1.0.0",
"main": "index.js",
"author": "WithoutPants",
"license": "AGPL-3.0",
"scripts": {
"compile:ts": "yarn tsc",
"compile:sass": "yarn sass src/testReact.scss dist/testReact.css",
"copy:yml": "cpx \"src/testReact.yml\" \"dist\"",
"compile": "yarn run compile:ts && yarn run compile:sass",
"build": "yarn run compile && yarn run copy:yml"
},
"devDependencies": {
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"cpx": "^1.5.0",
"sass": "^1.69.4",
"typescript": "^5.2.2"
}
}