-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.58 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
{
"name": "stylex-webpack",
"version": "0.3.2",
"description": "The another Webpack Plugin for Facebook's StyleX",
"homepage": "https://github.com/SukkaW/style9-webpack#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SukkaW/stylex-webpack.git"
},
"bugs": {
"url": "https://github.com/SukkaW/style9-webpack/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"next"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./next": {
"types": "./next/index.d.ts",
"default": "./next/index.js"
}
},
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts --configPlugin swc3 --bundleConfigAsCjs",
"lint": "eslint --format=sukka .",
"test": "mocha --require @swc-node/register test/index.ts",
"test:update": "mocha --update --require @swc-node/register test/index.ts",
"prerelease": "npm run build && npm run lint",
"release": "bumpp -r --all --commit \"release: %s\" --tag \"%s\""
},
"keywords": [
"css",
"atomic-css",
"stylex",
"css-in-js",
"webpack",
"nextjs",
"app-router"
],
"author": "Sukka <https://skk.moe>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@babel/plugin-syntax-typescript": "^7.25.9",
"@stylexjs/babel-plugin": "^0.9.3",
"@types/webpack": "^5.28.5",
"loader-utils": "^3.3.1",
"rollup": "^4.14.0"
},
"devDependencies": {
"@eslint-sukka/node": "^6.12.0",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.10.1",
"@types/babel__core": "^7.20.5",
"@types/chai": "^4.3.14",
"@types/loader-utils": "^2.0.6",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"browserslist": "^4.24.3",
"bumpp": "^9.9.1",
"chai": "^4.4.1",
"css-loader": "^6.10.0",
"eslint": "^9.17.0",
"eslint-config-sukka": "^6.12.0",
"eslint-formatter-sukka": "^6.12.0",
"memfs": "^4.15.0",
"mini-css-extract-plugin": "^2.9.2",
"mocha": "^11.0.1",
"mocha-chai-jest-snapshot": "^1.1.6",
"next": "^15.1.0",
"postcss": "^8.4.49",
"rimraf": "^6.0.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-swc3": "^0.12.1",
"swc-loader": "^0.2.6",
"typescript": "^5.7.2",
"webpack": "^5.97.1"
},
"peerDependencies": {
"@stylexjs/stylex": "*"
},
"packageManager": "pnpm@9.15.0",
"overrides": {
"chai": "$chai"
}
}