-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 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
{
"name": "NEW_LIB",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "./dist/NEW_LIB.umd.cjs",
"module": "./dist/NEW_LIB.js",
"types": "./dist/index.d.ts",
"homepage": "",
"keywords": [],
"repository": {
"type": "git",
"url": "",
"directory": ""
},
"exports": {
".": {
"import": "./dist/NEW_LIB.js",
"require": "./dist/NEW_LIB.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && npm run build:lib && npm run build:site",
"build:site": "vite build -c vite.config.ts --emptyOutDir",
"build:lib": "vite build -c vite.config.lib.ts",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"eslint-plugin-react": "^7.37.5",
"jsdom": "^26.1.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@types/eslint__js": "^9.14.0",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/parser": "^8.41.0",
"@vitejs/plugin-react": "^5.0.2",
"eslint": "^9.34.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.3.0",
"react-github-btn": "^1.4.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vite": "^7.1.3"
}
}