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
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.65 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@rocket.chat/css-in-js",
"version": "0.31.25",
"description": "Toolset to transpile and use CSS on runtime",
"keywords": [
"rocket.chat",
"css-in-js"
],
"homepage": "https://rocketchat.github.io/Rocket.Chat.Fuselage/",
"bugs": {
"url": "https://github.com/RocketChat/fuselage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git",
"directory": "packages/css-in-js"
},
"license": "MIT",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"main": "dist/index.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.module.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/logicalProperties"
],
"scripts": {
"build": "rollup -c",
"docs": "typedoc",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"test": "jest --runInBand"
},
"dependencies": {
"@emotion/hash": "^0.9.2",
"@rocket.chat/css-supports": "workspace:~",
"@rocket.chat/memo": "workspace:~",
"@rocket.chat/stylis-logical-props-middleware": "workspace:~",
"stylis": "~4.3.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "~28.0.9",
"@rollup/plugin-json": "~6.1.0",
"@rollup/plugin-node-resolve": "~16.0.3",
"@rollup/plugin-terser": "~0.4.4",
"@rollup/plugin-typescript": "~12.1.4",
"@types/stylis": "^4.2.7",
"eslint": "~9.39.2",
"jest": "~30.2.0",
"lint-all": "workspace:~",
"prettier": "~3.6.2",
"rollup": "~4.52.5",
"ts-jest": "~29.4.6",
"typedoc": "~0.28.16",
"typescript": "~5.9.3"
},
"publishConfig": {
"access": "public"
}
}