-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "@rocket.chat/css-supports",
"version": "0.31.25",
"description": "Memoized and SSR-compatible facade of CSS.supports API",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"homepage": "https://github.com/RocketChat/fuselage#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git",
"directory": "packages/css-supports"
},
"bugs": {
"url": "https://github.com/RocketChat/fuselage/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"docs": "typedoc"
},
"devDependencies": {
"eslint": "~9.14.0",
"lint-all": "workspace:~",
"prettier": "~3.3.3",
"rimraf": "~3.0.2",
"typedoc": "~0.25.13",
"typescript": "~5.6.3"
},
"dependencies": {
"@rocket.chat/memo": "workspace:~"
}
}