-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.53 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.53 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "rocket-cursor-component",
"version": "2.2.0",
"description": "A customizable React component that replaces the cursor with an animated rocket, featuring rotation and flame effects.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"check": "npm run typecheck && npm run test && npm run build && publint && attw --pack .",
"check:published": "node ./scripts/version-status.mjs --require-ahead --published-only",
"dev": "vite",
"demo": "vite",
"prepublishOnly": "npm run typecheck && npm run test && npm run build && publint",
"prepare": "simple-git-hooks",
"test": "vitest run",
"test:package": "node ./scripts/smoke-pack.mjs",
"typecheck": "tsc --noEmit",
"version:check": "node ./scripts/version-status.mjs --require-ahead",
"version:major": "node ./scripts/bump-version.mjs major",
"version:minor": "node ./scripts/bump-version.mjs minor",
"version:patch": "node ./scripts/bump-version.mjs patch",
"version:prerelease": "node ./scripts/bump-version.mjs prerelease --preid rc",
"version:status": "node ./scripts/version-status.mjs"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/No898/RocketCursor.git"
},
"keywords": [
"react",
"cursor",
"rocket",
"component",
"typescript",
"animation"
],
"author": "Tomas Dinh",
"license": "MIT",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"jsdom": "^28.1.0",
"publint": "^0.3.18",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"simple-git-hooks": "^2.13.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.1.0"
},
"overrides": {
"rollup": "4.59.0"
},
"engines": {
"node": ">=18.0.0"
},
"simple-git-hooks": {
"pre-push": "node ./scripts/pre-push.mjs"
}
}