forked from RocketChat/fuselage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "@rocket.chat/stylis-logical-props-middleware",
"version": "0.31.25",
"description": "Stylis middleware to handle CSS Logical Properties and their fallbacks",
"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/stylis-logical-props-middleware"
},
"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:clean": "rimraf dist",
".:build:esm": "tsc -p tsconfig-esm.json",
".:build:cjs": "tsc -p tsconfig-cjs.json",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"lint-staged": "lint-staged",
"test": "jest --runInBand --passWithNoTests",
"docs": "typedoc",
"bump-next": "bump-next"
},
"devDependencies": {
"@rocket.chat/eslint-config-alt": "workspace:~",
"@rocket.chat/prettier-config": "workspace:~",
"@types/jest": "~29.5.0",
"bump": "workspace:~",
"eslint": "~8.38.0",
"jest": "~29.5.0",
"lint-all": "workspace:~",
"lint-staged": "~13.2.1",
"npm-run-all": "^4.1.5",
"prettier": "~2.8.7",
"rimraf": "^3.0.2",
"stylis": "4.1.3",
"ts-jest": "~29.1.0",
"typedoc": "~0.24.1",
"typescript": "~5.0.4"
},
"dependencies": {
"@rocket.chat/css-supports": "workspace:~"
},
"peerDependencies": {
"stylis": "4.0.10"
}
}