-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 774 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"private": "true",
"name": "profile-filament",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev:scripts": "node bin/build.js --dev",
"dev:styles": "npx @tailwindcss/cli -i resources/css/plugin.css -o resources/dist/plugin.css --watch",
"build:scripts": "node bin/build.js",
"build:styles": "npx @tailwindcss/cli -i resources/css/plugin.css -o resources/dist/plugin.css --minify",
"dev": "npm-run-all --parallel dev:*",
"build": "npm-run-all build:*"
},
"dependencies": {
"@simplewebauthn/browser": "^13.3.0"
},
"devDependencies": {
"@tailwindcss/cli": "^4.3.0",
"esbuild": "^0.28.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^4.3.0"
}
}