-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 895 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 895 Bytes
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
{
"name": "@hanlogy/react-kit",
"private": false,
"version": "1.0.2",
"type": "module",
"author": "hanlogy.com",
"sideEffects": false,
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"prepack": "npm run build",
"test": "jest"
},
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4"
}
}