mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.1 KiB
79 lines
2.1 KiB
{
|
|
"name": "@rspack/core",
|
|
"version": "1.6.8",
|
|
"webpackVersion": "5.75.0",
|
|
"license": "MIT",
|
|
"description": "The fast Rust-based web bundler with webpack-compatible API",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./hot/*": "./hot/*.js",
|
|
"./hot/*.js": "./hot/*.js",
|
|
"./package.json": "./package.json",
|
|
"./module": "./module.d.ts"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"hot",
|
|
"compiled",
|
|
"module.d.ts"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.12.0"
|
|
},
|
|
"homepage": "https://rspack.rs",
|
|
"bugs": "https://github.com/web-infra-dev/rspack/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/web-infra-dev/rspack",
|
|
"directory": "packages/rspack"
|
|
},
|
|
"devDependencies": {
|
|
"@ast-grep/napi": "^0.40.0",
|
|
"@napi-rs/wasm-runtime": "1.0.7",
|
|
"@rsbuild/plugin-node-polyfill": "^1.4.2",
|
|
"@rslib/core": "0.18.3",
|
|
"@swc/types": "0.1.25",
|
|
"@types/node": "^20.19.25",
|
|
"@types/watchpack": "^2.4.5",
|
|
"browserslist-load-config": "^1.0.1",
|
|
"enhanced-resolve": "5.18.3",
|
|
"glob-to-regexp": "^0.4.1",
|
|
"memfs": "4.48.1",
|
|
"prebundle": "^1.6.0",
|
|
"tinypool": "^1.1.1",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3",
|
|
"watchpack": "^2.4.4",
|
|
"webpack-sources": "3.3.3"
|
|
},
|
|
"dependencies": {
|
|
"@module-federation/runtime-tools": "0.21.6",
|
|
"@rspack/lite-tapable": "1.1.0",
|
|
"@rspack/binding": "1.6.8"
|
|
},
|
|
"peerDependencies": {
|
|
"@swc/helpers": ">=0.5.1"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@swc/helpers": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "rslib build",
|
|
"build:browser": "rslib build -c rslib.browser.config.mts",
|
|
"dev": "rslib build --watch",
|
|
"doc-coverage": "tsx ./scripts/check-documentation-coverage.ts",
|
|
"api-extractor": "api-extractor run --verbose",
|
|
"api-extractor:ci": "api-extractor run --verbose || diff temp/core.api.md etc/core.api.md"
|
|
}
|
|
}
|