-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
98 lines (98 loc) · 2.44 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
95
96
97
98
{
"name": "postcss-rtlcss",
"version": "5.6.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\" \"tests/**/*.ts\"",
"clean": "./scripts/clean.sh",
"copy": "./scripts/copy.sh",
"modify-dts": "replace-in-file --configFile=config.replace.json",
"build": "pnpm clean && rollup --config rollup.config.js --bundleConfigAsCjs && pnpm copy && pnpm modify-dts",
"prepare": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm 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.3.0"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.14",
"@types/jest-specific-snapshot": "^0.5.9",
"@types/node": "^22.10.2",
"@types/rtlcss": "^3.5.4",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.9.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"jest-specific-snapshot": "^8.0.0",
"postcss": "^8.4.26",
"replace-in-file": "^8.2.0",
"rimraf": "^6.0.1",
"rollup": "^4.28.1",
"rollup-plugin-ts": "^3.4.5",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"peerDependencies": {
"postcss": "^8.4.21"
},
"engines": {
"node": ">=18.0.0"
}
}