Skip to content
Snippets Groups Projects
package.json 1.17 KiB
Newer Older
Marihachi's avatar
Marihachi committed
{
marihachi's avatar
marihachi committed
  "name": "mfm-js",
syuilo's avatar
syuilo committed
  "version": "0.23.3",
  "description": "An MFM parser implementation with TypeScript",
marihachi's avatar
marihachi committed
  "main": "./built/index.js",
  "types": "./built/index.d.ts",
Marihachi's avatar
Marihachi committed
  "scripts": {
    "build": "npm run tsc",
marihachi's avatar
marihachi committed
    "tsc": "tsc",
marihachi's avatar
marihachi committed
    "parse": "node ./built/cli/parse",
    "parse-simple": "node ./built/cli/parseSimple",
    "api": "npx api-extractor run --local --verbose",
    "api-prod": "npx api-extractor run --verbose",
    "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
syuilo's avatar
syuilo committed
    "jest": "jest --coverage",
    "test": "npm run jest && npm run tsd"
Marihachi's avatar
Marihachi committed
  },
  "repository": {
    "type": "git",
marihachi's avatar
marihachi committed
    "url": "git+https://github.com/misskey-dev/mfm.js.git"
Marihachi's avatar
Marihachi committed
  },
  "author": "Marihachi",
marihachi's avatar
marihachi committed
  "license": "MIT",
Marihachi's avatar
Marihachi committed
  "devDependencies": {
marihachi's avatar
marihachi committed
  },
  "dependencies": {
syuilo's avatar
syuilo committed
marihachi's avatar
marihachi committed
  },
  "files": [
marihachi's avatar
marihachi committed
    "built",
marihachi's avatar
marihachi committed
    "CHANGELOG.md"
marihachi's avatar
marihachi committed
  ]
Marihachi's avatar
Marihachi committed
}