-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.03 KB
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
{
"name": "react-strict-dom",
"version": "0.0.55",
"description": "React Strict DOM",
"exports": {
".": {
"react-native": {
"types": "./dist/native/index.d.ts",
"default": "./dist/native/index.js"
},
"default": {
"types": "./dist/web/index.d.ts",
"default": "./dist/web/index.js"
}
},
"./babel-preset": "./babel/preset.js",
"./postcss-plugin": "./postcss/plugin.js",
"./runtime": "./dist/web/runtime.js",
"./package.json": "./package.json"
},
"files": [
"babel/*",
"dist/*",
"postcss/*",
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "rollup --config ./tools/rollup.config.mjs",
"clean": "del-cli \"./build/*\" \"./dist/*\"",
"dev": "npm run build -- --watch",
"jest": "jest --config ./tools/jest.config.js",
"jest:report": "jest --config ./tools/jest.config.js --collect-coverage",
"prebuild": "npm run clean && generate-types -i src/ -o dist"
},
"dependencies": {
"@babel/helper-module-imports": "^7.24.7",
"@stylexjs/babel-plugin": "^0.18.3",
"@stylexjs/stylex": "^0.18.3",
"postcss-value-parser": "^4.1.0",
"postcss-react-strict-dom": "0.0.55",
"styleq": "^0.2.1"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@testing-library/react": "^16.3.0",
"react": "~19.0.0",
"react-dom": "~19.0.0",
"react-test-renderer": "~19.0.0",
"rollup": "^4.22.4"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": ">=0.79.5"
},
"engines": {
"node": ">=20.11.0"
},
"license": "MIT",
"homepage": "https://github.com/facebook/react-strict-dom/tree/main/packages/react-strict-dom",
"repository": {
"type": "git",
"url": "git+https://github.com/facebook/react-strict-dom.git"
}
}