-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.3 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "auto-skeleton",
"version": "0.7.0",
"description": "Enterprise-grade React auto-skeleton with build-time generation and zero runtime overhead",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"browser": {
"import": "./dist/esm/browser.js",
"require": "./dist/browser.js",
"types": "./dist/browser.d.ts"
},
"node": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"default": {
"import": "./dist/esm/browser.js",
"require": "./dist/browser.js",
"types": "./dist/browser.d.ts"
}
},
"./build-tools": {
"node": {
"import": "./dist/esm/build-tools.js",
"require": "./dist/build-tools.js",
"types": "./dist/build-tools.d.ts"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"HOW_TO_USE.md",
"PACKAGE_USAGE_EXAMPLES.md"
],
"repository": {
"type": "git",
"url": "https://github.com/your-org/auto-skeleton.git"
},
"homepage": "https://github.com/your-org/auto-skeleton#readme",
"bugs": {
"url": "https://github.com/your-org/auto-skeleton/issues"
},
"scripts": {
"dev": "storybook dev -p 6006",
"build": "node scripts/build.js",
"build:storybook": "storybook build",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"storybook": "storybook dev -p 6006",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build && npm run test && npm run type-check"
},
"keywords": [
"react",
"skeleton",
"loading",
"ui",
"typescript",
"enterprise",
"performance",
"build-time",
"zero-overhead",
"skeleton-loader",
"placeholder",
"shimmer",
"loading-state"
],
"author": "",
"license": "MIT",
"browser": {
"./dist/index.js": "./dist/browser.js",
"fs": false,
"path": false,
"child_process": false,
"net": false,
"os": false,
"crypto": false,
"stream": false,
"util": false,
"events": false,
"puppeteer": false,
"puppeteer-core": false,
"./dist/build-tools.js": false,
"./src/build-tools.ts": false
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"optionalDependencies": {
"puppeteer": "^21.0.0",
"puppeteer-core": "^21.0.0"
},
"devDependencies": {
"@storybook/addon-a11y": "^8.6.14",
"@storybook/addon-controls": "^8.6.14",
"@storybook/addon-docs": "^8.6.14",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/node": "^24.5.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-test-renderer": "^19.1.0",
"happy-dom": "^15.11.7",
"jest-axe": "^8.0.0",
"jsdom": "^25.0.1",
"react-test-renderer": "^18.3.1",
"storybook": "^8.6.14",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
}
}