-
-
Notifications
You must be signed in to change notification settings - Fork 653
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 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
51
52
53
{
"name": "react-shepherd",
"version": "6.0.5",
"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 -F shepherd.js build && pnpm build",
"test:ci": "vitest --run",
"test:dev": "vitest"
},
"dependencies": {
"@shepherdpro/pro-js": "workspace:*",
"shepherd.js": "workspace:*"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^15.0.7",
"@types/react": "^18.3.3",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^1.6.0",
"happy-dom": "^14.11.0",
"typescript": "^5.4.5",
"vite": "^5.3.2",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.0"
}
}