-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.63 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "auto-clippath",
"version": "1.0.5",
"description": "The TypeScript-based library for clip-path generation",
"type": "module",
"main": "dist/auto-clippath.js",
"module": "dist/auto-clippath.js",
"types": "dist/auto-clippath.d.ts",
"scripts": {
"build:all": "npm run build & npm run build:browser & npm run typescript-declarations",
"watch:all": "npm run watch & npm run watch:browser",
"build": "node _build/main.js",
"watch": "node _build/main.js -- watch",
"build:browser": "node _build/browser.js",
"watch:browser": "node _build/browser.js -- watch",
"eslint": "eslint ./src/**",
"typescript-declarations": "tsc --emitDeclarationOnly"
},
"keywords": [
"auto clip path",
"auto clippath",
"auto path",
"clippath generation",
"clippath",
"css clip path",
"css clippath",
"path generation",
"paths generate",
"star shape",
"svg clip path",
"svg mask",
"svg path",
"svg patterns",
"svg transform",
"svg",
"vector graphics"
],
"author": "Eugene Shordukalo <[email protected]>",
"homepage": "https://github.com/rjct/auto-clippath",
"license": "MIT",
"repository": "github:rjct/auto-clippath",
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"esbuild": "^0.19.9",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.55.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}