-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.12 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
{
"name": "linear-gradient-element",
"version": "0.0.0",
"description": "Set linear-gradient CSS background of your element, with transition animation, interpolation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoseungme/linear-gradient-element.git"
},
"homepage": "https://github.com/hoseungme/linear-gradient-element#readme",
"keywords": [
"css",
"transition",
"animation",
"color",
"css-transition",
"css-animation",
"linear-gradient",
"linear-gradient-transition",
"linear-gradient-animation",
"linear-gradient-element"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify"
},
"author": "hoseungme",
"license": "MIT",
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}