-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 787 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 787 Bytes
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
{
"name": "tiny-spark",
"private": false,
"version": "1.2.0",
"type": "module",
"description": "An elegant, reactive and responsive sparkline chart solution without dependency.",
"author": "Alec Lloyd Probert",
"main": "dist/tiny-spark.umd.js",
"module": "dist/tiny-spark.es.js",
"keywords": [
"sparkline",
"chart",
"mini chart",
"line",
"framework agnostic"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/graphieros/tiny-spark.git"
},
"homepage": "https://tiny-spark.graphieros.com/",
"scripts": {
"dev": "vite",
"build": "tsc && vite build"
},
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^24.0.8",
"typescript": "~5.8.3",
"vite": "^7.2.2"
}
}