-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 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
{
"name": "vite-typescript-npm-package",
"version": "1.0.0",
"description": "Vite TypeScript library npm package template",
"author": "Jason Sturges <jason@jsonsturges.com> (https://jasonsturges.com)",
"homepage": "https://github.com/jasonsturges/vite-typescript-npm-package",
"repository": "github:jasonsturges/vite-typescript-npm-package",
"license": "ISC",
"keywords": [
"vite",
"typescript",
"npm",
"package"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"start": "vite --host --open",
"build": "vite build"
},
"peerDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0",
"@types/node": "^24.7.0",
"@types/react": "^19.2.1",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.1.9",
"vite-plugin-dts": "^4.5.4"
}
}