-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·51 lines (51 loc) · 1.51 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
{
"name": "@coinpaprika/widget-currency",
"version": "2.0.2",
"description": "A widget showing cryptocurrency stats that you can easily embed in your website.",
"type": "module",
"main": "dist/widget.js",
"module": "dist/widget.es.js",
"exports": {
".": {
"import": "./dist/widget.es.js",
"require": "./dist/widget.umd.js"
}
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/coinpaprika/widget-currency/"
},
"scripts": {
"dev": "vite",
"build": "vite build && npm run copy && npm run scss",
"preview": "vite preview",
"scss": "sass src/scss/widget.scss:dist/widget.min.css --style compressed",
"watch-css": "sass --watch src/scss/widget.scss:dist/widget.min.css --style compressed",
"copy": "npm run copy-lang && npm run copy-img && npm run copy-data",
"copy-lang": "copyfiles './src/lang/*' -f ./dist/lang/",
"copy-img": "copyfiles './src/img/*' -f ./dist/img/",
"copy-data": "copyfiles './src/data/*' -f ./dist/data/"
},
"keywords": [
"coinpaprika",
"widget",
"cryptocurrency",
"stats",
"embed"
],
"engines": {
"node": "^18.0.0 || ^20.0.0"
},
"author": "Coinpaprika <[email protected]> (https://coinpaprika.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/coinpaprika/widget-currency/issues"
},
"homepage": "https://coinpaprika.com",
"devDependencies": {
"copyfiles": "^2.4.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.79.3",
"vite": "^4.5.5"
}
}