-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.25 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
{
"name": "@impt/swarm-widget",
"version": "0.1.0",
"description": "The open-source hotel-search widget that pays you 5%. By IMPT.",
"keywords": [
"hotel",
"booking",
"affiliate",
"widget",
"carbon-offset",
"travel",
"impt"
],
"homepage": "https://swarm.impt.io",
"repository": {
"type": "git",
"url": "git+https://github.com/impt/swarm-widget.git"
},
"bugs": {
"url": "https://github.com/impt/swarm-widget/issues"
},
"license": "MIT",
"author": "IMPT Systems Limited <swarm-widget@impt.io>",
"main": "dist/widget.cjs.js",
"module": "dist/widget.esm.js",
"browser": "dist/widget.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly",
"size": "size-limit",
"lint": "eslint src",
"test": "vitest run"
},
"size-limit": [
{
"name": "widget.js (gzip)",
"path": "dist/widget.js",
"limit": "12 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^11.0.0",
"size-limit": "^11.0.0",
"typescript": "^5.4.0",
"vite": "^5.2.0",
"vitest": "^1.5.0"
},
"publishConfig": {
"access": "public"
}
}