forked from wix-incubator/rtlcss-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.23 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
{
"name": "rtlcss-rspack-plugin",
"version": "4.0.3",
"license": "MIT",
"private": false,
"author": {
"name": "bobihuang"
},
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/cbbfcd/rtlcss-rspack-plugin"
},
"homepage": "https://github.com/cbbfcd/rtlcss-rspack-plugin",
"bugs": {
"url": "https://github.com/cbbfcd/rtlcss-rspack-plugin/issues"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "ava",
"prepublish": "npm run build"
},
"devDependencies": {
"typescript": "^5.6.3",
"@types/node": "^22.9.0",
"@types/rtlcss": "^3.5.4",
"@rspack/core": "^1.1.2",
"ava": "^6.2.0",
"memory-fs": "^0.5.0",
"css-loader": "^7.1.2"
},
"dependencies": {
"rtlcss": "^4.3.0",
"@rspack/lite-tapable": "^1.0.1"
},
"peerDependencies": {
"@rspack/core": "1.x"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
}
},
"packageManager": "pnpm@9.4.0",
"engines": {
"node": ">=20.10.0"
},
"ava": {
"files": [
"test/**/*.spec.js"
]
}
}