mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 00:32:15 +03:00
70 lines
2.4 KiB
JSON
70 lines
2.4 KiB
JSON
{
|
|
"name": "@swc/minifier",
|
|
"version": "1.9.1",
|
|
"description": "Super-fast alternative for terser",
|
|
"homepage": "https://swc.rs",
|
|
"main": "./index.js",
|
|
"author": "강동윤 <kdy1997.dev@gmail.com>",
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"swc",
|
|
"terser",
|
|
"minifier"
|
|
],
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/swc-project/swc.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/swc-project/swc/issues"
|
|
},
|
|
"napi": {
|
|
"binaryName": "minifier",
|
|
"targets": [
|
|
"x86_64-apple-darwin",
|
|
"x86_64-pc-windows-msvc",
|
|
"x86_64-unknown-linux-gnu",
|
|
"x86_64-unknown-linux-musl",
|
|
"i686-pc-windows-msvc",
|
|
"armv7-unknown-linux-gnueabihf",
|
|
"aarch64-unknown-linux-gnu",
|
|
"aarch64-apple-darwin",
|
|
"aarch64-unknown-linux-musl",
|
|
"aarch64-pc-windows-msvc"
|
|
]
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/",
|
|
"access": "public"
|
|
},
|
|
"types": "./index.d.ts",
|
|
"scripts": {
|
|
"artifacts": "napi artifacts --npm-dir scripts/npm",
|
|
"prepublishOnly": "tsc -d && napi prepublish -p scripts/npm --tagstyle npm",
|
|
"pack": "wasm-pack",
|
|
"build:ts": "tsc -d",
|
|
"build:wasm": "npm-run-all \"pack -- build ../../bindings/binding_minifier_wasm --scope swc {1} -t {2}\" --",
|
|
"build": "tsc -d && napi build --platform --js ./src/binding.js --dts ./src/binding.d.ts --manifest-path ../../bindings/Cargo.toml -p binding_minifier_node --output-dir . --release",
|
|
"build:dev": "tsc -d && napi build --platform --js ./src/binding.js --dts ./src/binding.d.ts --manifest-path ../../bindings/Cargo.toml -p binding_minifier_node --output-dir .",
|
|
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' echo 'no test'",
|
|
"version": "napi version --npm-dir scripts/npm"
|
|
},
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/swc"
|
|
},
|
|
"dependencies": {
|
|
"@swc/counter": "^0.1.3",
|
|
"@swc/types": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "^3.0.0-alpha.22",
|
|
"@types/node": "^20.7.1",
|
|
"cross-env": "^7.0.3",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|