-
-
Notifications
You must be signed in to change notification settings - Fork 650
/
package.json
56 lines (56 loc) · 1.25 KB
/
package.json
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
{
"name": "react-shepherd",
"version": "6.1.6",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shepherd-pro/shepherd.git"
},
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./package.json": "./package.json"
},
"type": "module",
"files": [
"dist",
"src"
],
"scripts": {
"build": "vite build",
"prepack": "pnpm build",
"test:ci": "vitest --run",
"test:dev": "vitest"
},
"dependencies": {
"shepherd.js": "workspace:*"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.3.3",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/ui": "^2.1.5",
"happy-dom": "^15.10.2",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-plugin-dts": "^3.9.1",
"vitest": "^2.1.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}