forked from alpine-collective/alpinejs-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.06 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.06 KB
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
53
54
55
{
"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": {
"bootstrap": "npm i && npm --prefix=packages/shell-chrome-v3 i",
"start": "rollup -c -w",
"dev": "npm start",
"start:ci": "ROLLUP_SERVE=true rollup -c",
"build:dev": "rollup -c",
"build": "NODE_ENV=production rollup -c && npm --prefix packages/shell-chrome-v3 run build",
"watch": "npm start",
"test": "node --test tests/*",
"cy:run": "cypress run",
"cy:open": "cypress open",
"format": "prettier './{packages/**/,cypress/**/*,lib/}*.{js,ts,tsx,html,css}' --write",
"check:format": "prettier './{packages/**/,cypress/**/*,}*.{js,ts,tsx,html,css}' -c",
"typecheck": "npm --prefix packages/shell-chrome-v3 run typecheck",
"prepackage": "npm run build",
"package": "cd ./dist/chrome && zip -r ../alpine-devtools-$npm_package_version.zip .",
"postpackage": "cd ./dist/shell-chrome-v3 && zip -r ../alpine-devtools-v2.zip ."
},
"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,ts,tsx,css,md,html,json}": "prettier --write"
}
}