-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.4 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
{
"name": "@purduehackers/time",
"version": "0.7.0",
"description": "convert between traditional time and lightning time ⚡️",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/esm/react.js",
"require": "./dist/react.js"
},
"./preact": {
"types": "./dist/preact.d.ts",
"import": "./dist/esm/preact.js",
"require": "./dist/preact.js"
}
},
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"pub": "npm run build && npm publish",
"build": "npm run test && rm -rf dist && bunchee",
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"react",
"preact"
],
"keywords": [
"lightning",
"time"
],
"author": "Matthew Stanciu",
"license": "MIT",
"homepage": "https://github.com/purduehackers/time",
"repository": {
"type": "git",
"url": "[email protected]:purduehackers/time.git"
},
"bugs": {
"url": "https://github.com/purduehackers/time/issues"
},
"dependencies": {
"@types/react": "^18.2.22",
"date-fns": "^2.30.0",
"preact": "^10.19.3",
"react": "^18.2.0",
"rgb-hex": "3.0.0"
},
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"bunchee": "^4.0.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pinst": "^3.0.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@types/react": ">=17.0.0",
"date-fns": ">=2.0.0",
"preact": ">=10.0.0",
"react": ">=17.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"preact": {
"optional": true
},
"@types/react": {
"optional": true
}
}
}