-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@sfgrp/pinpoint",
"private": false,
"version": "0.0.12",
"files": [
"dist"
],
"type": "module",
"main": "./dist/pinpoint.umd.cjs",
"module": "./dist/pinpoint.js",
"exports": {
".": {
"import": "./dist/pinpoint.js",
"require": "./dist/pinpoint.umd.cjs"
},
"./dist/pinpoint.css": "./dist/pinpoint.css"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/SpeciesFileGroup/pinpoint",
"license": "NCSA",
"repository": {
"type": "git",
"url": "git+https://github.com/SpeciesFileGroup/pinpoint.git"
},
"keywords": [
"species file group",
"multifurcating keys",
"pinpoint"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build --mode lib",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"vue": "^3.5.13"
},
"devDependencies": {
"@testing-library/user-event": "^14.5.2",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^5.2.1",
"jsdom": "^25.0.1",
"msw": "^2.7.0",
"typescript": "~5.7.2",
"vite": "^6.0.7",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
}
}