-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 780 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 780 Bytes
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
{
"name": "figma-squircle",
"description": "Figma-flavored squircles for everyone",
"type": "module",
"author": "Tien Pham",
"version": "1.1.0",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint",
"build": "tsup src/index.ts --format esm --dts",
"prepare": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"eslint": "^9.9.1",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"files": [
"dist",
"src"
],
"keywords": [
"squircle",
"react",
"figma"
],
"repository": {
"type": "git",
"url": "https://github.com/phamfoo/figma-squircle.git"
}
}