-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfef6b3
commit 15e9830
Showing
43 changed files
with
1,664 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,20 @@ | ||
{ | ||
"name": "edeap-vite", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"preview": "vite preview", | ||
"e2e": "npx playwright test --ui", | ||
"test": "vitest --exclude 'e2e/**'" | ||
}, | ||
"devDependencies": { | ||
"@playwright/test": "^1.44.1", | ||
"@types/node": "^20.12.13", | ||
"typescript": "^5.2.2", | ||
"vite": "^5.2.6", | ||
"vitest": "^1.6.0" | ||
}, | ||
"dependencies": { | ||
"@types/qs": "^6.9.15", | ||
"qs": "^6.12.1", | ||
"zod": "^3.23.8" | ||
} | ||
} | ||
"name": "edeap", | ||
"type": "module", | ||
"private": true, | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"dependencies": { | ||
"turbo": "^1.13.3", | ||
"typescript": "^5.4.5" | ||
}, | ||
"scripts": { | ||
"test": "turbo run test", | ||
"build": "turbo run build", | ||
"dev": "turbo run dev", | ||
"clean": "turbo run clean", | ||
"tsc": "turbo run tsc", | ||
"graph": "cyto-nodejs -s tmp/graph.json -d tmp/graph.svg" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"name": "edeap-demo", | ||
"version": "0.0.1", | ||
"description": "Euler Diagrams Drawn with Ellipses Area-Proportionally (Edeap)", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/stereobooster/edeap-vite", | ||
"directory": "packages/demo" | ||
}, | ||
"author": "stereobooster", | ||
"license": "GPLV3", | ||
"keywords": [ | ||
"euler", | ||
"venn", | ||
"diagram" | ||
], | ||
"type": "module", | ||
"exports": { | ||
"types": "./dist/index.d.js", | ||
"default": "./dist/index.js" | ||
}, | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.js", | ||
"files": [ | ||
"./dist/*" | ||
], | ||
"types": "./dist/index.d.js", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"preview": "vite preview", | ||
"e2e": "npx playwright test --ui", | ||
"test": "vitest --exclude 'e2e/**'", | ||
"clean": "rm -rf dist", | ||
"tsc": "tsc" | ||
}, | ||
"devDependencies": { | ||
"@playwright/test": "^1.44.1", | ||
"@types/node": "^20.12.13", | ||
"typescript": "^5.4.5", | ||
"vite": "^5.2.6" | ||
}, | ||
"dependencies": { | ||
"@types/qs": "^6.9.15", | ||
"qs": "^6.12.1", | ||
"zod": "^3.23.8", | ||
"edeap": "workspace:*" | ||
} | ||
} |
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/tsconfig", | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "./dist", | ||
|
||
"module": "ESNext", | ||
/* Bundler mode */ | ||
"moduleResolution": "bundler", | ||
"allowImportingTsExtensions": true, | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"noEmit": true | ||
}, | ||
"include": ["./src"], | ||
"rootDir": "./src" | ||
} |
Oops, something went wrong.