lost-sia
Version:
Single Image Annotation Tool
112 lines • 3.17 kB
JSON
{
"name": "lost-sia",
"version": "2.0.1-alpha11",
"description": "Single Image Annotation Tool",
"license": "MIT",
"repository": "l3p-cv/lost-sia",
"main": "./dist/index.js",
"module": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"keywords": [
"lost",
"annotation",
"image annotation",
"react annotation tool"
],
"engines": {
"node": ">=18",
"npm": ">=8"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./utils": {
"development": "./src/utils/index.js",
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js",
"require": "./dist/utils/index.js"
},
"./models": {
"development": "./src/models/index.js",
"types": "./dist/models/index.d.ts",
"import": "./dist/models/index.js",
"require": "./dist/models/index.js"
},
"./styles/variables": "./src/styles/_variables.scss",
"./styles/coreui": "./src/styles/coreui.scss"
},
"files": [
"dist",
"src",
"styles"
],
"style": "dist/main.css",
"scripts": {
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"publishpkg": "npm publish",
"test": "vitest run",
"start": "storybook dev -p 6006",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write src/"
},
"dependencies": {
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-draggable": "^4.4.6",
"sass": "^1.89.2",
"semantic-ui-css": "2.5.0",
"semantic-ui-react": "^2.0.3"
},
"peerDependencies": {
"@coreui/react": "^5.9.1",
"prop-types": "^15.5.4",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.52.13",
"@storybook/addon-docs": "^9.1.10",
"@storybook/addon-links": "^9.0.12",
"@storybook/react": "^9.0.12",
"@storybook/react-vite": "^9.0.12",
"@storybook/test": "9.0.0-alpha.2",
"@types/react": "^19.1.16",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"@vitejs/plugin-react": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-storybook": "^9.1.12",
"glob": "^10.4.5",
"lodash-es": "^4.17.21",
"prettier": "^3.3.3",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"storybook": "^9.0.12",
"unplugin-dts": "^1.0.0-beta.6",
"vite": "^5.4.19",
"vitest": "^1.6.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}