-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-animated-cursor",
"version": "2.11.1",
"description": "An animated custom cursor component in React.",
"author": "Stephen Scaff <stephenscaff.com>",
"homepage": "https://stephenscaff.github.io/react-animated-cursor/",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"browser": "dist/index.umd.js",
"files": [
"dist/index.js",
"dist/index.es.js",
"dist/index.umd.js",
"dist/index.d.ts"
],
"targets": {
"main": false,
"module": false,
"browser": false,
"types": false
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "rollup -c",
"dev": "parcel ./docs/src/index.html --dist-dir ./docs/dist",
"demo:clean": "rm -rf ./docs/dist",
"demo:start": "parcel ./docs/src/index.html --dist-dir ./docs/dist",
"demo:build": "parcel build ./docs/src/index.html --dist-dir ./docs/dist --public-url ./",
"demo:deploy": "npm run demo:build && gh-pages -d ./docs/dist",
"prepare": "npm run build",
"prepublish": "rm -rf ./dist && npm run build",
"lint": "eslint \"lib/**/*.+(ts|tsx)\" --fix ",
"format": "prettier --write \"lib/**/*.+(ts|tsx)\""
},
"keywords": [
"react cursor",
"custom cursor",
"animated cursor"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/stephenscaff/react-animated-cursor"
},
"bugs": {
"url": "https://github.com/stephenscaff/react-animated-cursor/issues"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"parcel": "^2.3.2",
"prettier": "^2.0.5",
"process": "^0.11.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "^3.22.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"typescript": "^5.0.4"
}
}