Files
stash/pkg/plugin/examples/react-component/package.json
feederbox826 600cb15102 [packaging] switch to pnpm (#6186)
* [packaging] switch to pnpm
* Bump compiler version
* Change pnpm store in docker build
---------

Co-authored-by: feederbox826 <feederbox826@users.noreply.github.com>
Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
2025-11-10 09:17:25 +11:00

22 lines
589 B
JSON

{
"name": "react-component",
"version": "1.0.0",
"main": "index.js",
"author": "WithoutPants",
"license": "AGPL-3.0",
"scripts": {
"compile:ts": "npm run tsc",
"compile:sass": "npm run sass src/testReact.scss dist/testReact.css",
"copy:yml": "cpx \"src/testReact.yml\" \"dist\"",
"compile": "npm run compile:ts && npm run compile:sass",
"build": "npm run compile && npm 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"
}
}