-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "catenary-curve",
"version": "2.0.2",
"description": "Calculate the perfect catenary between two points",
"keywords": [
"catenary",
"hanging",
"chain",
"cable",
"points",
"curve",
"rope"
],
"type": "module",
"files": [
"lib"
],
"types": "./lib/main.d.ts",
"main": "./lib/catenary-curve.umd.cjs",
"module": "./lib/catenary-curve.js",
"exports": {
".": {
"import": "./lib/catenary-curve.js",
"require": "./lib/catenary-curve.umd.cjs",
"types": "./lib/main.d.ts"
}
},
"repository": "https://github.com/dulnan/catenary-curve",
"directories": {
"lib": "lib"
},
"scripts": {
"dev": "vite -c ./vite.config-demo.ts",
"build": "tsc && vite build",
"build:demo": "vite-ssg -c ./vite.config-demo.ts build",
"preview": "vite -c ./vite.config-demo.ts preview"
},
"author": "Jan Hug <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.18",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
"catenary-curve": "^1.0.1",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"vite-ssg": "^0.22.1",
"vue-tsc": "^1.0.22"
}
}