-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.53 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
56
57
58
59
60
{
"name": "x-widget",
"version": "0.2.12",
"description": "Adds the ability to define reusable Widgets (WebComponents) using Alpinejs.",
"main": "./dist/x-widget-all.js",
"module": "./dist/x-widget-all.mjs",
"files": [
"README.md",
"LICENSE",
"dist/",
"src/",
"test/"
],
"scripts": {
"build": "zx build",
"format": "prettier --write build './src/**/*.mjs' './test/*.test.mjs'",
"test": "web-test-runner './test/*.test.mjs' --node-resolve",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"prepublishOnly": "npm run build"
},
"exports": {
".": {
"import": "./dist/x-widget-all.mjs",
"require": "./dist/x-widget-all.js"
},
"./core": {
"import": "./dist/x-widget.mjs",
"require": "./dist/x-widget.js"
},
"./data": {
"import": "./dist/x-widget-data.mjs",
"require": "./dist/x-widget-data.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/allain/x-widget.git"
},
"keywords": [
"Alpinejs",
"web",
"webcomponents"
],
"author": "Allain Lalonde <allain.lalonde@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/allain/x-widget/issues"
},
"homepage": "https://github.com/allain/x-widget#readme",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@types/alpinejs": "^3.7.0",
"@web/test-runner": "^0.13.22",
"alpinejs": "^3.5.1",
"esbuild": "^0.13.15",
"prettier": "^2.5.1",
"zx": "^4.2.0"
}
}