-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
68
{
"name": "react-minigraph",
"version": "0.0.8",
"main": "dist/index.js",
"types": "src/types.d.ts",
"demo": "demo/index.html",
"targets": {
"main": false,
"types": false,
"demo": {
"distDir": "./docs/"
}
},
"license": "MIT",
"private": false,
"homepage": "http://PiTiLeZarD.github.io/react-minigraph",
"author": "Jonathan Adami <pitilezard@gmail.com> (jadami.com)",
"bugs": {
"url": "https://github.com/PiTiLeZarD/react-minigraph/issues",
"email": "pitilezard@gmail.com"
},
"repository": {
"url": "https://github.com/PiTiLeZarD/react-minigraph.git",
"type": "git"
},
"keywords": [
"react",
"component",
"react-component",
"charts",
"sparklines",
"visualization",
"jsx",
"tsx",
"typescript"
],
"scripts": {
"build": "tsc",
"types": "tsc --noEmit",
"build:demo": "parcel build --public-url /react-minigraph ./demo/index.html",
"dev": "parcel --dist-dir dev ./demo/index.html",
"clean": "rm -Rf docs dev dist .parcel-cache",
"prepublish": "pnpm clean && pnpm build",
"prepages": "pnpm clean && typedoc src/ && mv docs/index.html docs/doc.html && pnpm build:demo",
"pages": "pnpm prepages && gh-pages -b ghpages -d docs"
},
"dependencies": {
"chroma-js": "^2.4.2"
},
"devDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.13.5",
"@types/chroma-js": "^2.4.0",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"gh-pages": "^5.0.0",
"parcel": "^2.9.2",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typedoc": "^0.22.18",
"typescript": "^4.9.5"
},
"resolutions": {
"postcss": "^8.0.0"
}
}