forked from single-spa/single-spa-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.1 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
74
75
76
77
78
79
{
"name": "single-spa-react",
"version": "7.0.0-beta.0",
"description": "Single-spa lifecycles helper for React apps",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/single-spa-react.d.ts",
"default": "./lib/single-spa-react.js"
},
"./parcel": {
"types": "./lib/parcel.d.ts",
"default": "./lib/parcel.js"
}
},
"packageManager": "pnpm@10.15.1",
"files": [
"lib",
"README.md"
],
"scripts": {
"build": "rollup -c rollup.config.ts && tsc",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"format": "prettier --write .",
"check-format": "prettier --check .",
"prepublishOnly": "pnpm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/single-spa/single-spa-react.git"
},
"keywords": [
"single",
"page",
"application",
"spa",
"react"
],
"author": "Jolyn Denning",
"license": "MIT",
"bugs": {
"url": "https://github.com/single-spa/single-spa-react/issues"
},
"homepage": "https://github.com/single-spa/single-spa-react#readme",
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@jest/globals": "^30.1.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"cross-env": "^10.0.0",
"dom-element-getter-helpers": "^2.1.0",
"heeler": "^4.0.0",
"husky": "^9.1.7",
"jest": "^30.1.3",
"jest-cli": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"rollup": "^4.50.0",
"rollup-plugin-delete": "^3.0.1",
"single-spa": "7.0.0-beta.9"
},
"peerDependencies": {
"react": ">=19",
"react-dom": ">=19"
}
}