mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
72 lines
2.1 KiB
JSON
72 lines
2.1 KiB
JSON
{
|
|
"name": "@marko/compiler",
|
|
"version": "5.33.3",
|
|
"description": "Marko template to JS compiler.",
|
|
"keywords": [
|
|
"babel",
|
|
"htmljs",
|
|
"marko",
|
|
"parse",
|
|
"parser",
|
|
"plugin"
|
|
],
|
|
"homepage": "https://github.com/marko-js/marko/blob/main/packages/marko/docs/compiler.md",
|
|
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/marko-js/marko/tree/master/packages/compiler"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Dylan Piercey <dpiercey@ebay.com>",
|
|
"main": "src/index.js",
|
|
"types": "index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"config.js",
|
|
"config.d.ts",
|
|
"modules.js",
|
|
"index.d.ts",
|
|
"babel-types.d.ts",
|
|
"register.js",
|
|
"register.d.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "babel ./src --out-dir ./dist --delete-dir-on-start --copy-files --config-file ../../babel.config.js --env-name=production",
|
|
"build:types": "node scripts/types-babel-types.mjs > ./dist/types.d.ts && node scripts/types-babel-traverse.js > ./dist/traverse.d.ts"
|
|
},
|
|
"dependencies": {
|
|
"@babel/code-frame": "^7.16.0",
|
|
"@babel/core": "^7.16.0",
|
|
"@babel/generator": "^7.16.0",
|
|
"@babel/parser": "^7.16.0",
|
|
"@babel/plugin-syntax-typescript": "^7.16.0",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
|
|
"@babel/plugin-transform-typescript": "^7.16.0",
|
|
"@babel/runtime": "^7.16.0",
|
|
"@babel/traverse": "^7.16.0",
|
|
"@babel/types": "^7.16.0",
|
|
"@marko/babel-utils": "^6.3.0",
|
|
"complain": "^1.6.0",
|
|
"he": "^1.2.0",
|
|
"htmljs-parser": "^5.4.3",
|
|
"jsesc": "^3.0.2",
|
|
"kleur": "^4.1.5",
|
|
"lasso-package-root": "^1.0.1",
|
|
"raptor-regexp": "^1.0.1",
|
|
"raptor-util": "^3.2.0",
|
|
"resolve-from": "^5.0.0",
|
|
"self-closing-tags": "^1.0.1",
|
|
"source-map-support": "^0.5.21",
|
|
"strip-ansi": "^6.0.0",
|
|
"strip-json-comments": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@marko/translator-default": "^5.31.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"main:dev": "src/index.js",
|
|
"main:npm": "dist/index.js"
|
|
}
|