-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
52 lines (52 loc) · 1.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "alpinejs-devtools",
"version": "1.3.0",
"private": true,
"description": "DevTools extension for debugging Alpine.js applications.",
"homepage": "https://github.com/alpine-collective/alpinejs-devtools",
"scripts": {
"start": "rollup -c -w",
"dev": "npm start",
"start:ci": "ROLLUP_SERVE=true rollup -c",
"build:dev": "rollup -c",
"build": "NODE_ENV=production rollup -c",
"watch": "npm start",
"test": "node --test tests/*",
"cy:run": "cypress run",
"cy:open": "cypress open",
"format": "prettier './{packages/**/,cypress/**/*,lib/}*.{js,html,css}' --write",
"check:format": "prettier './{packages/**/,cypress/**/*,}*.{js,html,css}' -c",
"prepackage": "npm run build",
"package": "cd ./dist/chrome && zip -r ../alpine-devtools-$npm_package_version.zip . && rm -rf ../chrome"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-replace": "6.0.2",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/jit": "^0.1.18",
"alpinejs": "^2.8.2",
"cypress": "14.2.1",
"cypress-iframe": "^1.0.1",
"edge.js": "^5.3.3",
"husky": "9.1.7",
"linkedom": "0.18.9",
"lint-staged": "15.5.0",
"prettier": "3.5.3",
"rollup": "^2.70.0",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-filesize": "10.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "3.0.0",
"split-grid": "^1.0.11",
"tailwindcss": "^2.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,html}": "prettier --write"
}
}