-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.39 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
58
{
"name": "fluid-meter",
"version": "1.1.2",
"repository": {
"type": "git",
"url": "https://github.com/aarcoraci/fluid-meter"
},
"license": "MIT",
"author": {
"name": "Angel Arcoraci",
"url": "https://github.com/aarcoraci"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"description": "a dependency free library that draws a circular meter where progress is displayed as the amount of liquid on it",
"files": [
"/dist"
],
"keywords": [
"npm",
"package",
"gauge",
"meter",
"fluid",
"liquid",
"no-dependency",
"dependency-free",
"vanilla",
"fluid-meter",
"liquid-meter",
"fluid-gauge",
"responsive",
"liquid-gauge"
],
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"ts-build": "tsc",
"buildLib": "rollup -c",
"build-full": "npm run buildLib && npm run build"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rollup": "^2.74.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.4.4",
"vite": "^2.7.2"
}
}