-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "container-media-observer",
"version": "0.1.4",
"description": "A lightweight JavaScript polyfill to support CSS @container queries in older browsers.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "tsup src/index.js --format cjs,esm --dts",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/DevCarlosAugusto/container-media-polyfill"
},
"keywords": [
"css",
"polyfill",
"container-queries",
"responsive-design",
"web-components",
"frontend"
],
"author": "DevCarlosAugusto",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"prettier": "^3.8.1",
"eslint": "^10.0.0"
}
}