-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "@react-sandbox/cursor-loader",
"version": "1.1.0",
"description": "Cursor loader component",
"author": "William Grosset (https://williamgrosset.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/react-sandbox/cursor-loader.git"
},
"bugs": {
"url": "https://github.com/react-sandbox/cursor-loader/issues"
},
"keywords": [
"react",
"typescript",
"component",
"loader",
"cursor-loader"
],
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "playwright test",
"clean": "rm -rf ./dist",
"prepublish": "pnpm clean && pnpm build"
},
"devDependencies": {
"@playwright/test": "^1.37.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"packageManager": "[email protected]"
}