-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 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
{
"name": "@christophermeek/ui-library",
"version": "0.1.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"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ChristopherMeek/interview-prep.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "oxlint src",
"lint:fix": "oxlint --fix src",
"prepublishOnly": "npm run build",
"test": "vitest --config=vitest.browser.config.ts"
},
"peerDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/browser-playwright": "^4.0.18",
"oxlint": "^0.15.4",
"typescript": "~5.9.3",
"vite": "^8.0.0-beta.13",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18",
"vitest-browser-react": "^2.0.5"
},
"pnpm": {
"overrides": {
"vite": "^8.0.0-beta.13"
}
}
}