-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "geo-2d",
"version": "1.0.10",
"type": "module",
"files": [
"dist"
],
"main": "dist/geometry.umd.js",
"module": "dist/geometry.es.js",
"exports": {
".": {
"import": {
"types": [
"./dist/index.d.ts"
],
"default": "./dist/geometry.es.js"
},
"require": "./dist/geometry.umd.js"
},
"./package.json": "./package.json",
"./README.md": "./README.md"
},
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
]
}
},
"scripts": {
"dev": "vite",
"build": "pnpm run build:demo",
"build:demo": "vite build --mode demo",
"build:lib": "vite build --mode lib",
"doc": "typedoc src/index.ts --excludeInternal",
"preview": "vite preview",
"publish:lib": "vite build --mode lib && npm publish",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.15.0",
"@vitejs/plugin-vue": "^5.1.2",
"less": "^4.2.0",
"typedoc": "^0.26.6",
"typescript": "^5.0.2",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.0.5",
"vue": "^3.3.4",
"vue-tsc": "^2.1.0"
},
"peerDependencies": {
"gl-matrix": "^3.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/quarksb/geo-2d.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}