-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "@crisislab/timeline",
"description": "Time-series graphing library",
"type": "module",
"version": "0.11.4",
"scripts": {
"dev": "vite dev",
"build": "BUILD_SITE_NOT_LIBRARY=no vite build",
"preview": "vite preview",
"build-site": "BUILD_SITE_NOT_LIBRARY=yes vite build",
"deploy": "npm run build && npx jsr publish && npm publish --access=public",
"format": "prettier --write src/**/* vite.config.js"
},
"devDependencies": {
"dotenv": "^16.4.5",
"jsr": "^0.12.4",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/crisislab-platform/TimeLine.git"
},
"homepage": "https://crisislab-timeline.pages.dev/examples/",
"author": {
"name": "Zade Viggers",
"email": "zviggers@massey.ac.nz"
},
"types": "./dist/src/index.d.ts",
"main": "./dist/TimeLine.umd.cjs",
"module": "./dist/TimeLine.js",
"exports": {
".": {
"import": "./dist/TimeLine.js",
"types": "./dist/src/index.d.ts"
}
}
}