-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.87 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
{
"name": "@acemarke/react-prod-sourcemaps",
"version": "0.3.1",
"description": "A tool to update app sourcemaps with the original code of ReactDOM's production builds",
"repository": "https://github.com/markerikson/react-prod-sourcemaps",
"author": "Mark Erikson",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"types": "./lib/index.d.ts",
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.cjs"
}
}
},
"bin": {
"react-prod-sourcemaps": "lib/index.cjs"
},
"scripts": {
"dev": "tsup --watch",
"build": "rm -rf ./lib && tsup",
"prepack": "yarn build",
"start": "tsx ./src/main.mts",
"test": "node --experimental-modules --loader tsx --test src/*.test.mts",
"test:watch": "node --watch --loader tsx --test src/*.test.mts",
"test:only": "node --watch --test-only --loader tsx --test src/*.test.mts"
},
"dependencies": {
"@ampproject/remapping": "^2.2.1",
"@jridgewell/resolve-uri": "^3.1.1",
"glob": "^10.3.3",
"magic-string": "^0.30.3",
"unplugin": "^1.4.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"@rspack/cli": "^0.3.2",
"@rspack/core": "^0.3.1",
"@types/node": "^20.5.7",
"@types/yargs": "^17.0.24",
"esbuild": "^0.19.2",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.28.1",
"tsup": "^7.2.0",
"tsx": "^3.12.8",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"webpack": "^5.88.2"
},
"files": [
"assets",
"lib",
"src"
]
}