This repository has been archived by the owner on Feb 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.98 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
53
54
55
56
57
{
"name": "@getclaps/button",
"version": "1.0.0-alpha.21",
"description": "",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"browser": "dist/index.js",
"unpkg": "dist/index.js",
"files": [
"lib",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf lib dist",
"test": "exit 0",
"build:tsc": "tsc -d",
"watch:tsc": "tsc -d -w",
"build:esbuild": "esbuild src/index.ts --bundle --minify --sourcemap --target=chrome58,firefox57,safari11,edge18 --outfile=dist/index.js",
"watch:esbuild": "esbuild src/index.ts --bundle --minify --sourcemap --target=chrome58,firefox57,safari11,edge18 --outfile=dist/index.js --watch",
"build": "npm run build:tsc & npm run build:esbuild & wait",
"watch": "npm run watch:tsc & npm run watch:esbuild",
"dev": "npm run watch & http-server -p 3337",
"changelog:head": "echo \"\\n\\n## v$npm_package_version\" | after.js 'CHANGELOG' CHANGELOG.md",
"changelog:list": "git log v$npm_package_version..HEAD --pretty=format:'- %s' --reverse | after.js 'CHANGELOG' CHANGELOG.md",
"preversion": "npm run changelog:list",
"version": "npm run changelog:head && git add .",
"prepack": "npm run clean && npm run build",
"install-bin": "for f in `ls .bin`; do ln -sf ../../.bin/${f} node_modules/.bin/${f}; done",
"uninstall-bin": "for f in `ls .bin`; do rm node_modules/.bin/${f}; done"
},
"author": "Florian Klampfer <[email protected]> (https://qwtel.com/)",
"license": "MIT",
"devDependencies": {
"esbuild": "^0.10.2",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@getclaps/proof-of-clap": "^0.3.1",
"kv-storage-polyfill": "^2.0.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getclaps/button.git"
},
"bugs": {
"url": "https://github.com/getclaps/button/issues"
},
"homepage": "https://getclaps.net/",
"tags": []
}