-
Notifications
You must be signed in to change notification settings - Fork 246
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "@rocket.chat/css-supports",
"version": "0.31.25",
"description": "Memoized and SSR-compatible facade of CSS.supports API",
"homepage": "https://github.com/RocketChat/fuselage#readme",
"bugs": {
"url": "https://github.com/RocketChat/fuselage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git",
"directory": "packages/css-supports"
},
"license": "MIT",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"docs": "typedoc",
"lint": "lint",
"lint-and-fix": "lint-and-fix"
},
"dependencies": {
"@rocket.chat/memo": "workspace:~"
},
"devDependencies": {
"eslint": "~9.39.2",
"lint-all": "workspace:~",
"prettier": "~3.6.2",
"rimraf": "~6.0.1",
"typedoc": "~0.28.16",
"typescript": "~5.9.3"
},
"publishConfig": {
"access": "public"
}
}