forked from RocketChat/fuselage
-
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.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.41 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": "@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",
"bump-next": "bump-next"
},
"devDependencies": {
"@rocket.chat/eslint-config-alt": "workspace:~",
"@rocket.chat/prettier-config": "workspace:~",
"bump": "workspace:~",
"eslint": "~8.38.0",
"lint-all": "workspace:~",
"prettier": "~2.8.7",
"rimraf": "~3.0.2",
"typedoc": "~0.25.13",
"typescript": "~5.5.4"
},
"dependencies": {
"@rocket.chat/memo": "workspace:~"
},
"eslintConfig": {
"extends": "@rocket.chat/eslint-config-alt/typescript"
},
"prettier": "@rocket.chat/prettier-config/fuselage"
}