-
-
Notifications
You must be signed in to change notification settings - Fork 159
/
package.json
104 lines (104 loc) · 2.96 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "anichart",
"version": "3.3.1",
"description": "Data visualization animation library",
"author": "jannchie <[email protected]>",
"license": "MIT",
"private": false,
"main": "lib/index.js",
"unpkg": "dist/anichart.js",
"jsdelivr": "dist/anichart.js",
"types": "typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Jannchie/anichart.js.git"
},
"engines": {
"node": ">=12.16.1"
},
"files": [
"dist/**/*",
"lib/**/*",
"src/**/*",
"typings/**/*"
],
"scripts": {
"build": "tsc --build tsconfig.json & webpack --config webpack.prod.js",
"deploy": "npm version prerelease",
"serve": "webpack serve --open --config webpack.dev.js --port 12341",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"dev": "webpack --config webpack.dev.js",
"watch": "webpack --watch --config webpack.dev.js",
"prepublishOnly": "pnpm build",
"git-patch": "git checkout --patch master ./src"
},
"devDependencies": {
"@algolia/client-search": "4.17.2",
"@babel/core": "^7.22.5",
"@jannchie/eslint-config": "^1.3.1",
"@remotion/player": "^3.3.100",
"@types/d3-array": "^3.0.5",
"@types/d3-color": "^3.1.0",
"@types/d3-dsv": "^3.0.1",
"@types/d3-ease": "^3.0.0",
"@types/d3-fetch": "^3.0.2",
"@types/d3-format": "^3.0.1",
"@types/d3-geo": "^3.0.3",
"@types/d3-interpolate": "^3.0.1",
"@types/d3-scale": "^4.0.3",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/d3-selection": "^3.0.5",
"@types/d3-shape": "^3.1.1",
"@types/d3-time-format": "^4.0.0",
"@types/d3-timer": "^3.0.0",
"@types/lodash": "^4.14.195",
"@types/react": "^18.2.12",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.42.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"html-webpack-plugin": "^5.5.3",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remotion": "^3.3.100",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"vitepress": "1.0.0-beta.2",
"vue": "^3.3.4",
"webpack": "^5.87.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"d3-array": "^3.2.4",
"d3-color": "^3.1.0",
"d3-ease": "^3.0.1",
"d3-fetch": "^3.0.1",
"d3-format": "^3.1.0",
"d3-geo": "^3.1.0",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-time-format": "^4.1.0",
"d3-timer": "^3.0.1",
"dayjs": "^1.11.8",
"lodash": "^4.17.21"
},
"keywords": [
"animation",
"chart",
"data",
"visualization"
]
}