-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 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
88
{
"name": "bonework",
"version": "0.3.2",
"description": "Minimal-effort skeleton loaders for React — wrap what you already render, and CSS Anchor Positioning keeps shimmers aligned to the real DOM. No sizing props, no skeleton stand-ins, no drift as your UI evolves.",
"type": "module",
"packageManager": "pnpm@11.9.0",
"main": "./dist/bonework.cjs",
"module": "./dist/bonework.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/bonework.js",
"require": "./dist/bonework.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "vite build && tsc -p tsconfig.build.json",
"build:example": "vite build --mode example --base /Bonework/ && mv dist-example/src/example/index.html dist-example/index.html && rm -rf dist-example/src",
"dev": "vite",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test -c playwright-ct.config.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"fmt": "prettier --write .",
"release": "make checks",
"prepare": "husky",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"skeleton",
"loader",
"placeholder",
"shimmer",
"loading",
"react",
"css-anchor",
"anchor-positioning"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Wildhoney/Bonework.git"
},
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.14.0",
"@eslint/js": "^9.39.3",
"@faker-js/faker": "^10.5.0",
"@playwright/experimental-ct-react": "^1.61.1",
"@playwright/test": "^1.61.1",
"@tanstack/react-query": "^5.101.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.5.4",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"commit-and-tag-version": "^12.6.1",
"eslint": "^9.39.3",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jsdom": "^25.0.0",
"madge": "^8.0.0",
"prettier": "^3.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.55.0",
"vite": "^8.1.4",
"vitest": "^4.1.10"
}
}