-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.89 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
{
"name": "react-table-of-content",
"private": false,
"author": {
"name": "Precious OSSAI",
"email": "theossaiprecious@gmail.com",
"url": "https://ossaiprecious.com"
},
"keywords": [
"table of content",
"markdown",
"react",
"react hooks",
"toc",
"heading links",
"article",
"navigation",
"autogenerate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PeCrio/react-table-of-content.git"
},
"bugs": {
"url": "https://github.com/PeCrio/react-table-of-content/issues"
},
"homepage": "https://github.com/PeCrio/react-table-of-content#readme",
"license": "MIT",
"version": "1.3.0",
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./dist/style.css": "./dist/style.css"
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepare": "npm run build && husky install",
"preview": "vite preview",
"test": "jest"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"jest-environment-jsdom": "^29.7.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/uuid": "^9.0.2",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.13",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"postcss": "^8.4.20",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"husky": "^8.0.0"
}
}