-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.4 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
{
"name": "@plantquest/assetmap",
"version": "9.0.6",
"description": "PlantQuest Asset Map",
"author": "plantquest",
"license": "MIT",
"repository": "plantquest/plantquest-assetmap",
"main": "dist/pqam.umd.js",
"module": "dist/pqam.mjs",
"types": "plantquest-assetmap.d.ts",
"source": "src/pqam.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"watch": "vite build -w",
"xpreview": "vite preview",
"view": "cp -r dist view && serve view -p 3003",
"clean": "rm -rf node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm install",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags",
"repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
"repo-publish-quick": "npm run build && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org "
},
"devDependencies": {
"leaflet": "1.8.0",
"leaflet-editable": "1.2.0",
"leaflet-path-drag": "^1.8.0-beta.3",
"leaflet-rastercoords": "1.0.5",
"leaflet.markercluster": "1.5.3",
"seneca-browser": "6.4.0",
"seneca-entity": "25.1.0",
"seneca-mem-store": "8.4.0",
"serve": "^14.2.1",
"vite": "^5.0.11"
},
"files": [
"LICENSE",
"README.md",
"dist"
]
}