123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "@milkdown/exception",
- "type": "module",
- "version": "7.3.5",
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/Milkdown/milkdown.git",
- "directory": "packages/exception"
- },
- "sideEffects": false,
- "exports": {
- ".": {
- "import": "./lib/index.es.js",
- "types": "./lib/index.d.ts"
- }
- },
- "main": "./lib/index.es.js",
- "files": [
- "lib",
- "src"
- ],
- "dependencies": {
- "tslib": "^2.5.0"
- },
- "nx": {
- "targets": {
- "build": {
- "outputs": [
- "{projectRoot}/lib"
- ],
- "dependsOn": [
- {
- "target": "build",
- "projects": "dependencies"
- }
- ]
- },
- "tsc": {
- "outputs": [],
- "dependsOn": [
- {
- "target": "build",
- "projects": "dependencies"
- }
- ]
- }
- }
- },
- "scripts": {
- "start": "concurrently -n es,dts \"vite build --watch\" \"tsc --emitDeclarationOnly --watch\"",
- "test": "vitest",
- "tsc": "tsc --noEmit && echo",
- "build": "tsc --emitDeclarationOnly && vite build"
- },
- "types": "./lib/index.d.ts"
- }
|