72 lines
1.6 KiB
JSON
72 lines
1.6 KiB
JSON
{
|
|
"name": "@effect/atom-solid",
|
|
"version": "4.0.0-beta.99",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"description": "SolidJS bindings for the Effect Atom modules",
|
|
"homepage": "https://effect.website",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Effect-TS/effect.git",
|
|
"directory": "packages/atom/solid"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Effect-TS/effect/issues"
|
|
},
|
|
"tags": [
|
|
"typescript",
|
|
"solid",
|
|
"database"
|
|
],
|
|
"keywords": [
|
|
"typescript",
|
|
"solid",
|
|
"database"
|
|
],
|
|
"sideEffects": [],
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": "./src/index.ts",
|
|
"./*": "./src/*.ts",
|
|
"./internal/*": null,
|
|
"./*/index": null
|
|
},
|
|
"files": [
|
|
"src/**/*.ts",
|
|
"dist/**/*.js",
|
|
"dist/**/*.js.map",
|
|
"dist/**/*.d.ts",
|
|
"dist/**/*.d.ts.map"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true,
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": "./dist/index.js",
|
|
"./*": "./dist/*.js",
|
|
"./internal/*": null,
|
|
"./*/index": null
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -b tsconfig.json && pnpm babel",
|
|
"babel": "babel dist --plugins annotate-pure-calls --out-dir dist --source-maps",
|
|
"check": "tsc -b tsconfig.json",
|
|
"test": "vitest",
|
|
"coverage": "vitest --coverage"
|
|
},
|
|
"peerDependencies": {
|
|
"effect": "workspace:^",
|
|
"solid-js": ">=1 <2"
|
|
},
|
|
"devDependencies": {
|
|
"@solidjs/testing-library": "^0.8.0",
|
|
"@testing-library/dom": "^10.4.1",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"effect": "workspace:^",
|
|
"jsdom": "^29.1.1",
|
|
"solid-js": "^1.9.14"
|
|
}
|
|
}
|