-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "async-alpine",
"version": "2.0.2",
"description": "Load Alpine Components asynchronously. Allows for code splitting and lazy loading components!",
"author": "Alistair Shepherd <[email protected]>",
"license": "Apache-2.0",
"keywords": [],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/accudio/async-alpine.git"
},
"bugs": {
"url": "https://github.com/accudio/async-alpine/issues"
},
"main": "./dist/async-alpine.script.js",
"exports": {
"require": "./dist/async-alpine.cjs.js",
"import": "./dist/async-alpine.esm.js",
"default": "./dist/async-alpine.esm.js"
},
"files": [
"dist"
],
"lint-staged": {
"*": "npm run format"
},
"devDependencies": {
"@playwright/test": "^1.45.3",
"@stylistic/eslint-plugin": "^2.3.0",
"@types/node": "^22.0.0",
"alpinejs": "^3.14.1",
"esbuild": "^0.23.0",
"eslint": "^9.7.0",
"http-server": "^14.1.1",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"playwright": "^1.45.3"
},
"scripts": {
"dev": "node scripts/build.js --watch",
"build": "node scripts/build.js",
"test": "playwright test",
"lint": "eslint",
"format": "eslint --fix",
"prepare": "husky install",
"push-dev": "echo '*' > dist/CORS && npx surge dist async-alpine-dev.surge.sh && rm dist/CORS"
}
}