-
-
Notifications
You must be signed in to change notification settings - Fork 655
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 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
{
"name": "react-shepherd",
"version": "7.0.4",
"private": false,
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/shipshapecode/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",
"LICENSE.md"
],
"scripts": {
"build": "vite build",
"prepack": "cp ../../LICENSE.md ./LICENSE.md && pnpm build",
"test:ci": "vitest --run",
"test:dev": "vitest"
},
"dependencies": {
"shepherd.js": "workspace:*"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/ui": "^4.0.18",
"happy-dom": "^20.6.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}