@podlite/schema
Version:
AST tools for Podlite markup language
62 lines • 1.56 kB
JSON
{
"name": "@podlite/schema",
"version": "0.0.29",
"description": "AST tools for Podlite markup language",
"main": "lib/index.js",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/podlite"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"esm",
"schema/*",
"README.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=14"
},
"engineStrict": true,
"publishConfig": {
"access": "public",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"module": "./esm/index.js"
},
"scripts": {
"clean": "rm -rf lib esm *.tsbuildinfo",
"build": "run-s build:pegjs build_lib build:ast ",
"build_lib": "yarn g:build",
"build:ast": "ts-node scripts/make-ast-scheme.ts",
"build:pegjs": "pegjs -o src/grammar.js src/grammar.pegjs && pegjs -o src/grammarfc.js src/grammarfc.pegjs",
"watch": "npx nodemon -e js,ts --exec 'yarn' build",
"watch:pegjs": "npx nodemon -e pegjs --exec 'yarn' build:pegjs",
"test": "yarn g:jest --passWithNoTests"
},
"keywords": [
"markdown",
"podlite",
"markup",
"markup-language"
],
"dependencies": {
"ajv": "^7.2.3",
"events": "^3.1.0",
"json-pointer": "^0.6.1",
"nanoid": "3.1.30",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/node": "^17.0.7",
"glob": "^7.2.0",
"npm-run-all": "^4.1.5",
"pegjs": "^0.10.0",
"ts-node": "^9.1.1",
"typescript": "4.5.5",
"typescript-json-schema": "0.53.0"
},
"module": "./esm/index.js"
}