-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.28 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.28 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@d-buckner/ensemble-solidjs",
"version": "0.2.0",
"description": "SolidJS bindings for Ensemble actor model framework",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/d-buckner/ensemble.git",
"directory": "packages/solidjs"
},
"keywords": [
"solidjs",
"solid",
"actor",
"state-management",
"typescript",
"reactive"
],
"author": "Daniel Buckner",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"solid-js": "^1.0.0"
},
"dependencies": {
"@d-buckner/ensemble-core": "^0.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.28.0",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/user-event": "^14.6.1",
"eslint-plugin-solid": "^0.14.5",
"jsdom": "^27.0.0",
"solid-js": "^1.9.3",
"typescript": "~5.9.3",
"vite-plugin-solid": "^2.11.9",
"vitest": "^3.2.4"
}
}