-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.18 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.18 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
{
"name": "@sect/use-placeholder-path",
"version": "1.6.1",
"description": "A custom React hook to retrieve placeholder path in Next.js App Router.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "biome check",
"lint:fix": "biome check --write",
"type-check": "tsc --noEmit --pretty",
"type-check:watch": "npm run type-check -- --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"secretlint": "secretlint --maskSecrets --secretlintignore .gitignore '**/*'",
"prepare": "husky",
"changeset": "changeset",
"release": "npm run build && changeset publish"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sectsect/use-placeholder-path.git"
},
"keywords": [
"next.js",
"react",
"hook",
"placeholder",
"path"
],
"author": "sect",
"license": "MIT",
"peerDependencies": {
"next": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
"react": "^18.2.0 || ^19.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@secretlint/secretlint-rule-preset-recommend": "^11.2.4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@vitejs/plugin-react": "^5.0.3",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.1.6",
"next": "^15.5.9",
"react": "^19.1.4",
"react-dom": "^19.1.4",
"secretlint": "^11.2.4",
"tsc-files": "^1.1.4",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"dependencies": {
"intersection-observer": "^0.12.2",
"vite-plugin-magical-svg": "^1.8.0"
}
}