forked from elchininet/postcss-rtlcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "postcss-rtlcss",
"version": "5.1.0",
"description": "PostCSS plugin to build Cascading Style Sheets (CSS) with Left-To-Right (LTR) and Right-To-Left (RTL) rules",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"rtl",
"ltr",
"right-to-left",
"left-to-right",
"postcss-rtlcss",
"rtlcss"
],
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"exports": {
".": {
"require": {
"types": "./index.d.ts",
"default": "./index.js"
},
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
}
},
"./options": {
"require": {
"types": "./options.d.ts",
"default": "./options.js"
},
"import": {
"types": "./esm/options.d.ts",
"default": "./esm/options.js"
}
}
},
"files": [
"esm/**/*",
"index.d.ts",
"index.js",
"options.d.ts",
"options.js"
],
"scripts": {
"test": "jest --clearCache && jest --verbose",
"lint": "eslint src/**/*.ts",
"clean": "./scripts/clean.sh",
"copy": "./scripts/copy.sh",
"modify-dts": "replace-in-file --configFile=config.replace.js",
"build": "yarn clean && rollup --config rollup.config.js --bundleConfigAsCjs && yarn copy && yarn modify-dts",
"prepare": "yarn build",
"prepublishOnly": "npm run lint && npm run test",
"version": "git add .",
"postversion": "git push && git push --tags"
},
"author": "ElChiniNet",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/elchininet/postcss-rtlcss"
},
"dependencies": {
"rtlcss": "4.1.1"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@types/eslint": "^8.56.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.8",
"@types/rtlcss": "^3.5.4",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.7.0",
"postcss": "^8.4.26",
"replace-in-file": "^7.1.0",
"rollup": "^4.9.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.4.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"postcss": "^8.4.21"
},
"engines": {
"node": ">=18.0.0"
}
}