-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "@feds01/graphika",
"version": "1.0.0",
"description": "A fast JavaScript library to draw elegant graphs ",
"main": "dist/graphika.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"fmt": "prettier --write src examples *.js *.json",
"lint": "eslint src",
"check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feds01/Graphika.git"
},
"type": "module",
"keywords": [
"graphing",
"fast",
"canvas",
"charts"
],
"author": "Alexander Fedotov",
"license": "ISC",
"bugs": {
"url": "https://github.com/feds01/Graphika/issues"
},
"homepage": "https://github.com/feds01/Graphika#readme",
"devDependencies": {
"@eslint/js": "^9.6.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.6.0",
"prettier": "3.3.2",
"rollup": "4.18.0",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1"
}
}