-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.11 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "rwa-demo-dry-run",
"version": "1.0.0",
"license": "AGPL-3.0-only",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"type": "module",
"files": [
"/dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.cjs"
},
"./editors": {
"types": "./dist/editors.d.ts",
"import": "./dist/es/editors.js",
"require": "./dist/cjs/editors.cjs"
},
"./document-models": {
"types": "./dist/documentModels.d.ts",
"import": "./dist/es/documentModels.js",
"require": "./dist/cjs/documentModels.cjs"
}
},
"scripts": {
"generate": "powerhouse generate",
"reactor": "ph dev",
"format-generated": "npx prettier \"**/{gen,processors,editors}/**/*\" --write --ignore-path --no-error-on-unmatched-pattern >> /dev/null",
"postgenerate": "npm run format-generated",
"check-types": "tsc",
"postlint": "npm run check-types",
"lint": "eslint",
"build": "npm run generate && vite build",
"storybook": "npm run install:storybook && npm run generate && storybook dev -p 6006",
"build-storybook": "npm run generate && storybook build",
"test": "vitest run",
"test:nogen": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"connect": "connect --config-file ./powerhouse.config.json",
"install:storybook": "tsx scripts/index.ts"
},
"peerDependencies": {
"document-model": "^2.14.0",
"document-model-libs": "^1.123.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@powerhousedao/analytics-engine-core": "^0.3.0",
"@powerhousedao/codegen": "^0.25.0",
"@powerhousedao/config": "1.4.0",
"@powerhousedao/connect": "1.0.0-dev.180",
"@powerhousedao/design-system": "1.17.0",
"@powerhousedao/ph-cli": "^0.14.0",
"@powerhousedao/reactor-api": "^1.12.0",
"@powerhousedao/reactor-local": "^1.11.0",
"@powerhousedao/scalars": "^1.14.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.2",
"@types/react": "^18.3.17",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"autoprefixer": "^10.4.20",
"document-model": "^2.14.0",
"document-model-libs": "^1.123.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.13.0",
"package-manager-detector": "^0.2.7",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-generate-file": "^0.2.0",
"vitest": "^2.1.8",
"zod": "^3.24.1"
},
"description": ""
}