-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.56 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.56 KB
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
{
"name": "generic-functions.mlai",
"repository": {
"type": "git",
"url": "https://github.com/Mathieu-ai/generic-functions.git"
},
"version": "0.9.18",
"description": "A comprehensive, lightweight utility library",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rimraf dist",
"copy-files": "node scripts/build-helper.cjs copy-files",
"prepare-dist": "npm run clean && npm run build && npm run copy-files",
"prebuild": "npm run clean",
"prepare": "npm run prepare-dist",
"prepack": "npm run prepare-dist",
"test": "echo \"No tests specified\" && exit 0",
"docs:extract": "node scripts/extract-docs.cjs",
"docs:dev": "npm run dev --prefix docs",
"docs:build": "npm run build --prefix docs",
"docs:serve": "npm run start --prefix docs"
},
"files": [
"dist"
],
"keywords": [
"generic-functions",
"utilities",
"helpers",
"lightweight",
"tree-shakable",
"typescript"
],
"bugs": {
"url": "https://github.com/Mathieu-ai/generic-functions/issues"
},
"homepage": "https://github.com/Mathieu-ai/generic-functions#readme",
"author": {
"name": "Mathieu-ai",
"email": "mathieu.lievre.pro@outlook.com",
"url": "https://github.com/Mathieu-ai"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"daisyui": "^4.12.12",
"lucide-react": "^0.460.0",
"next": "15.4.4",
"prismjs": "^1.30.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hot-toast": "^2.5.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/prismjs": "^1.26.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "15.4.4",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"tsx": "^4.20.3",
"typescript": "^5",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"esbuild": "^0.19.0",
"rimraf": "^5.0.0",
"tsup": "^8.5.0"
}
}