mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-12 11:36:32 -04:00
31 lines
612 B
JSON
31 lines
612 B
JSON
{
|
|
"name": "@sd/state",
|
|
"version": "0.0.0",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"source": "./src/index.ts",
|
|
"private": true,
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"dev": "tsc -w",
|
|
"build": "tsc",
|
|
"lint": "TIMING=1 eslint src --fix",
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"scripts": "*",
|
|
"tsconfig": "*",
|
|
"typescript": "^4.5.3"
|
|
},
|
|
"jest": {
|
|
"preset": "scripts/jest/node"
|
|
},
|
|
"dependencies": {
|
|
"eventemitter3": "^4.0.7",
|
|
"react-query": "^3.34.16"
|
|
}
|
|
}
|