-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "morphing-pointer",
"version": "0.5.4",
"description": "Morphing pointer in iPadOS style",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "index.d.ts",
"files": [
"dist/*",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/VoloshchenkoAl/morphing-pointer.git"
},
"bugs": {
"url": "https://github.com/VoloshchenkoAl/morphing-pointer/issues"
},
"scripts": {
"lint": "eslint ./src/**",
"dev": "parcel ./public/index.html",
"build": "parcel build ./src/index.ts --target browser --no-source-maps --experimental-scope-hoisting"
},
"keywords": [
"cursor",
"typescript",
"ipdaos",
"gsap"
],
"author": "Voloshchenko Aleksandr <[email protected]>",
"dependencies": {
"gsap": "^3.6.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"parcel-bundler": "^1.12.4",
"typescript": "^4.2.2"
},
"license": "MIT",
"alias": {
"pointers": "./src/pointers",
"helpers": "./src/helpers"
}
}