-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 1.69 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
{
"name": "chartjs-adapter-spacetime",
"version": "1.0.1",
"description": "Spacetime adapter for Chart.js",
"repository": {
"type": "git",
"url": "git://github.com/nfinished/chartjs-adapter-spacetime.git"
},
"type": "module",
"types": "./index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"main": "./dist/chartjs-adapter-spacetime.umd.cjs",
"module": "./dist/chartjs-adapter-spacetime.js",
"exports": {
".": {
"import": "./dist/chartjs-adapter-spacetime.js",
"require": "./dist/chartjs-adapter-spacetime.umd.cjs"
}
},
"scripts": {
"test": "jest",
"build": "vite build",
"lint": "eslint . --ext .ts,.tsx",
"prepare": "husky install && pnpm test && pnpm build"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"author": "Adam Trager <[email protected]>",
"license": "MIT",
"keywords": [
"spacetime",
"chart.js",
"adapter",
"time",
"chartjs"
],
"homepage": "https://github.com/nfinished/chartjs-adapter-spacetime",
"peerDependencies": {
"chart.js": "^3 || ^4",
"spacetime": "^7.4.0"
},
"devDependencies": {
"@swc/core": "^1.7.21",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"chart.js": "^4.4.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"prettier": "^3.3.3",
"spacetime": "^7.6.1",
"typescript": "^5.5.4",
"vite": "^5.4.2"
}
}