-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.26 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
{
"name": "keeptrack-css",
"version": "1.0.4",
"description": "Read computed CSS property values from elements and expose them as CSS custom properties (variables)",
"main": "dist/keepTrack.js",
"module": "dist/keepTrack.esm.js",
"types": "dist/keepTrack.d.ts",
"exports": {
".": {
"types": "./dist/keepTrack.d.ts",
"import": "./dist/keepTrack.esm.js",
"require": "./dist/keepTrack.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "node build.js",
"lint": "eslint .",
"test": "vitest run",
"prepare": "node build.js"
},
"keywords": [
"css",
"css-variables",
"custom-properties",
"computed-style",
"resize-observer",
"sticky",
"scroll-padding",
"scrollbar"
],
"author": "Robin Poort",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/robinpoort/KeepTrack-CSS.git"
},
"bugs": {
"url": "https://github.com/robinpoort/KeepTrack-CSS/issues"
},
"homepage": "https://github.com/robinpoort/KeepTrack-CSS#readme",
"devDependencies": {
"@eslint/js": "^9.18.0",
"eslint": "^9.18.0",
"happy-dom": "^16.7.0",
"terser": "^5.37.0",
"vitest": "^3.0.0"
}
}