|
| 1 | +{ |
| 2 | + "$schema": "https://json.schemastore.org/package", |
| 3 | + "name": "js-ast-analyze", |
| 4 | + "version": "0.0.1", |
| 5 | + "type": "module", |
| 6 | + "description": "Analyze JavaScript AST nodes conveniently.", |
| 7 | + "keywords": ["ast", "analyze", "javascript"], |
| 8 | + "license": "MIT", |
| 9 | + "author": { |
| 10 | + "name": "Mateusz Kadlubowski", |
| 11 | + |
| 12 | + "url": "https://github.com/xeho91" |
| 13 | + }, |
| 14 | + "homepage": "https://github.com/xeho91/js-ast", |
| 15 | + "repository": { |
| 16 | + "type": "git", |
| 17 | + "url": "git+https://github.com/xeho91/js-ast.git", |
| 18 | + "directory": "pkgs/js-ast-analyze" |
| 19 | + }, |
| 20 | + "bugs": "https://github.com/xeho91/js-ast/issues", |
| 21 | + "funding": [ |
| 22 | + { |
| 23 | + "type": "github", |
| 24 | + "url": "https://github.com/sponsors/xeho91" |
| 25 | + }, |
| 26 | + { |
| 27 | + "type": "opencollective", |
| 28 | + "url": "https://opencollective.com/xeho91" |
| 29 | + } |
| 30 | + ], |
| 31 | + "publishConfig": { |
| 32 | + "access": "public", |
| 33 | + "provenance": true |
| 34 | + }, |
| 35 | + "engines": { |
| 36 | + "node": ">=18" |
| 37 | + }, |
| 38 | + "files": ["dist/"], |
| 39 | + "exports": { |
| 40 | + ".": { |
| 41 | + "development": "./src/lib.ts", |
| 42 | + "types": "./dist/lib.d.ts", |
| 43 | + "default": "./dist/lib.js" |
| 44 | + }, |
| 45 | + "./package.json": "./package.json" |
| 46 | + }, |
| 47 | + "scripts": { |
| 48 | + "build": "pnpm run \"/^build:.*/\" ", |
| 49 | + "build:doc": "typedoc", |
| 50 | + "build:pkg": "tsc", |
| 51 | + "check": "tsc --noEmit", |
| 52 | + "clean": "pnpm run \"/^clean:.*/\"; rm -rf \"./**/node_modules\" ", |
| 53 | + "clean:build": "rm -rf \"./dist\" && rm -f \"tsconfig.tsbuildinfo\" ", |
| 54 | + "clean:cache": "rm -rf \"./node_modules/.cache\" ", |
| 55 | + "clean:doc": "rm -rf \"./docs\" ", |
| 56 | + "clean:test": "rm -rf \"./coverage\" ", |
| 57 | + "dev": "pnpm run \"/^dev:.*/\" ", |
| 58 | + "dev:doc": "typedoc --watch", |
| 59 | + "dev:test": "pnpm vitest watch --passWithNoTests --ui", |
| 60 | + "fix": "pnpm run \"/^fix:.*/\" ", |
| 61 | + "fix:biome": "biome check . --verbose --write", |
| 62 | + "fix:format": "biome format . --verbose --write", |
| 63 | + "fix:js": "biome lint . --verbose --fix --unsafe", |
| 64 | + "lint": "pnpm run \"/^lint:.*/\" ", |
| 65 | + "lint:biome": "biome check . --verbose", |
| 66 | + "lint:format": "biome format . --verbose", |
| 67 | + "lint:js": "biome lint . --verbose", |
| 68 | + "prepublishOnly": "pnpm --filter js-ast-analyze run --parallel \"/^lint|^test|^build:pkg/\"", |
| 69 | + "serve:doc": "serve \"./docs\" ", |
| 70 | + "test": "vitest run . --passWithNoTests" |
| 71 | + } |
| 72 | +} |
0 commit comments