-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 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
{
"name": "normalized-mouse-position",
"version": "1.0.0",
"description": "Convert mouse coordinates to normalized values relative to any origin point for smooth UI interactions and animations.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "pnpm run clean && tsup",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"typescript",
"utility",
"javascript",
"normalized-mouse-position"
],
"author": {
"name": "phucbm",
"url": "https://github.com/phucbm"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phucbm/normalized-mouse-position"
},
"bugs": {
"url": "https://github.com/phucbm/normalized-mouse-position/issues"
},
"homepage": "https://github.com/phucbm/normalized-mouse-position",
"devDependencies": {
"@phucbm/banner": "^0.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.10",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"ts-jest": "^29.4.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
},
"sideEffects": false
}