-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.47 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
{
"scripts": {
"build": "rollup -c",
"build:dynamic": "rollup -c rollup.config.dynamic.js",
"build:all": "npm run build && npm run build:dynamic"
},
"name": "@vogelweb/cursor-js",
"version": "1.0.6",
"description": "Create simple yet effective cursor effects without writing JavaScript. You can use data attributes to configure cursors or use the Cursor class instance for more control.",
"main": "dist/min/cursor.js",
"files": [
"dist",
"types.d.ts"
],
"publishConfig": {
"access": "public",
"directory": "dist"
},
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/cjs.cjs",
"import": "./dist/esm.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/devmadhava/cursor-js.git"
},
"keywords": [
"cursor",
"cursors",
"mouse",
"pointer",
"pointes",
"webdev",
"interactive",
"custom cursors",
"UI effects",
"frontend",
"CSS",
"UI",
"UX"
],
"author": "devmadhava",
"license": "MIT",
"bugs": {
"url": "https://github.com/devmadhava/cursor-js/issues"
},
"homepage": "https://github.com/devmadhava/cursor-js#readme",
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"babel-loader": "^9.1.3",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2"
}
}