@meta-aiml/parser
Version:
AIML Parser SDK v2.0.0 - Comprehensive schema validation for Meta-AIML.org entity schemas
85 lines (84 loc) • 2.2 kB
JSON
{
"name": "@meta-aiml/parser",
"version": "2.0.0",
"description": "AIML Parser SDK v2.0.0 - Comprehensive schema validation for Meta-AIML.org entity schemas",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"browser": "dist/aiml-parser.min.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"browser": "./dist/aiml-parser.min.js"
}
},
"files": [
"dist/**/*",
"src/**/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"build:min": "terser dist/aiml-parser.js -o dist/aiml-parser.min.js --compress --mangle",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.js",
"size": "bundlesize",
"validate": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meta-aiml-org/SDK.git"
},
"keywords": [
"aiml",
"schema",
"validation",
"meta-aiml",
"json-ld",
"semantic",
"ai",
"parser",
"entity",
"structured-data"
],
"author": "META-AIML.ORG - IURII IURIEV",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/meta-aiml-org/SDK/issues"
},
"homepage": "https://github.com/meta-aiml-org/SDK#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"bundlesize": "^0.18.1",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"rollup": "^4.3.0",
"terser": "^5.24.0",
"typescript": "^5.2.2"
},
"bundlesize": [
{
"path": "./dist/aiml-parser.min.js",
"maxSize": "50 kB"
}
]
}