-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "@nozzlegear/react-win-pivot",
"version": "2.1.1",
"description": "An attempt to recreate the Pivot element from WinJS in React.",
"repository": "git@github.com:nozzlegear/react-win-pivot.git",
"author": "Joshua Harms <joshua@nozzlegear.com>",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"packageManager": "npm@11.6.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./css": "./css/all.css"
},
"files": [
"dist",
"css"
],
"scripts": {
"build": "npm run validate && NODE_ENV=production vite build",
"dev": "vite dev .",
"validate": "tsc -p . --skipLibCheck --noEmit",
"prepublishOnly": "npm run lint && npm run build",
"format": "biome format --write index.tsx tests/* css/*",
"lint": "biome lint --write index.tsx tests/* css/* && npm run validate"
},
"dependencies": {
"classnames": "^2.5.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.7",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"react-dom": "^19.2.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4"
},
"peerDependencies": {
"react": "19"
}
}