UNPKG

pridoujs

Version:
108 lines (107 loc) 2.61 kB
{ "name": "pridoujs", "version": "1.0.7", "description": "The pridou interpreter.", "main": "lib/index.js", "module": "lib/index.js", "types": "lib/index.d.ts", "bin": { "pridou": "bin/cli.js" }, "type": "module", "contributors": [ "cannotbefound (https://github.com/cannotbefound)", "0BLV1V10N1 (https://github.com/0BL1V10N1)", "Noam790 (https://github.com/Noam790)", "Dimitri", "Fatoumata", "Ndeye Fatou", "Mame Diarra", "Mame faty" ], "scripts": { "start": "node bin/cli.js", "dev": "node --watch bin/cli.js", "test": "vitest run", "test:watch": "vitest dev", "test:coverage": "vitest run --coverage", "test:ui": "vitest --ui", "build": "tsc && tsc-alias", "build:watch": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")", "check": "biome check", "check:fix": "biome check --fix", "format": "biome format", "format:fix": "biome format --fix", "lint": "biome lint", "lint:fix": "biome lint --fix", "commit": "cross-env HUSKY_SKIP_CZ_CHECK=1 git-cz", "prepare": "node .husky/install.mjs" }, "homepage": "https://github.com/Pridou/pridou#readme", "repository": { "type": "git", "url": "git+https://github.com/Pridou/pridou.git" }, "bugs": { "url": "https://github.com/Pridou/pridou/issues" }, "keywords": [ "typescript", "interpreter", "language", "cli", "library" ], "license": "MIT", "dependencies": { "chalk": "^5.4.1", "commander": "^14.0.0" }, "devDependencies": { "@biomejs/biome": "1.9.4", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@types/bun": "^1.2.13", "@vitest/coverage-v8": "^3.1.4", "@vitest/ui": "^3.1.4", "commitizen": "4.3.1", "concurrently": "^9.1.2", "cross-env": "^7.0.3", "cz-conventional-changelog": "3.3.0", "husky": "^9.1.7", "semantic-release": "^24.2.5", "tsc-alias": "^1.8.16", "typescript": "^5.8.3", "vitest": "^3.1.4" }, "files": [ "lib", "bin" ], "exports": { ".": { "import": { "types": "./lib/index.d.ts", "default": "./lib/index.js" } } }, "publishConfig": { "registry": "https://registry.npmjs.org/", "tag": "latest", "access": "public", "provenance": true }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "engines": { "node": ">=20", "bun": ">=1.2.13", "npm": ">=10" } }