-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@rocket.chat/logo",
"version": "0.31.32",
"description": "Rocket.Chat logo package",
"keywords": [
"rocketchat",
"rocketchat logo"
],
"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/logo"
},
"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": {
"build": "run-s .:build:clean .:build:esm .:build:cjs .:build:logo",
".:build:clean": "rimraf dist",
".:build:esm": "tsc -p tsconfig-esm.json",
".:build:cjs": "tsc -p tsconfig-cjs.json",
".:build:logo": "build-logo",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"test": "jest --runInBand",
"docs": "typedoc"
},
"devDependencies": {
"@rocket.chat/fuselage-tokens": "workspace:~",
"@types/jest": "~29.5.14",
"@types/react": "~17.0.83",
"@types/react-dom": "~17.0.25",
"build-logo": "workspace:~",
"eslint": "~9.18.0",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"lint-all": "workspace:~",
"npm-run-all": "^4.1.5",
"prettier": "~3.4.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "~29.2.5",
"typedoc": "~0.27.5",
"typescript": "~5.7.2"
},
"dependencies": {
"@rocket.chat/fuselage-hooks": "workspace:~",
"@rocket.chat/styled": "workspace:~"
},
"peerDependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
}
}