swc/package.json

76 lines
2.0 KiB
JSON
Raw Normal View History

2020-02-16 10:51:42 +03:00
{
"name": "@swc/core",
"version": "1.2.23",
"description": "Super-fast alternative for babel",
2020-08-30 09:29:42 +03:00
"homepage": "https://swc-project.github.io",
"main": "./index.js",
"author": "강동윤 <kdy1997.dev@gmail.com>",
"license": "MIT",
2020-08-30 09:29:42 +03:00
"keywords": [
"swc",
"spack",
"babel",
"typescript",
"rust",
"webpack",
"tsc"
],
"engines": {
2020-08-30 09:29:42 +03:00
"node": ">=8.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swc-project/swc.git"
},
2020-08-30 09:29:42 +03:00
"bugs": {
"url": "https://github.com/swc-project/swc/issues"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64"
],
2020-09-05 11:48:22 +03:00
"napi": {
"name": "swc"
},
"dependencies": {
2020-09-05 11:48:22 +03:00
"@node-rs/helper": "^0.4.0"
},
"types": "./lib/index.d.ts",
"scripts": {
2020-09-05 11:48:22 +03:00
"artifacts": "napi artifacts -t scripts/npm",
"prepublishOnly": "tsc -d && napi prepublish -p scripts/npm --tagstyle npm",
"build": "tsc -d && cargo build -p node --release && napi build --platform --release --cargo-name node",
"build:dev": "tsc -d && cargo build -p node && napi build --platform --cargo-name node",
"test": "jest node-swc/__tests__",
"version": "napi version -p scripts/npm"
},
2020-02-16 10:51:42 +03:00
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/browserslist": "^4.4.0",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"browserslist": "^4.12.0",
"jest": "^23.6.0",
"lodash": "^4.17.11",
2020-09-05 11:48:22 +03:00
"napi-rs": "^0.3.1",
2020-08-30 09:29:42 +03:00
"progress": "^2.0.3",
"source-map": "^0.7.3",
"sourcemap-validator": "^1.1.1",
2020-07-28 15:56:19 +03:00
"typescript": "^3.9.7"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/swc"
2020-02-16 10:51:42 +03:00
}
2020-09-05 11:48:22 +03:00
}