generated from plantquest/plantquest-assetmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.41 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
{
"name": "@plantquest/assetmap-react",
"version": "8.0.6",
"description": "PlantQuest Asset Map",
"author": "plantquest",
"license": "MIT",
"repository": "plantquest/plantquest-assetmap-react",
"main": "dist/pqam-react.umd.js",
"module": "dist/pqam-react.mjs",
"source": "src/index.jsx",
"types": "plantquest-assetmap.d.ts",
"exports": {
".": {
"import": "./dist/pqam-react.mjs",
"require": "./dist/pqam-react.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"watch": "vite build -w",
"preview": "vite preview",
"test": "echo test",
"clean": "rm -rf node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm install && npm test",
"prep-dev": "npm link @plantquest/assetmap",
"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": {
"@plantquest/assetmap": "9.0.5",
"@vitejs/plugin-react": "^4.2.1",
"react": "18",
"react-dom": "18",
"vite": "^5.0.12"
},
"files": [
"LICENSE",
"README.md",
"dist",
"*.ts"
]
}