-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.09 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.09 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
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
99
100
101
{
"name": "tb-solid-pod",
"private": true,
"version": "0.1.0",
"description": "Browser-based Solid-style data pod with TinyBase: personas, contacts, groups, type indexes, WebID profile.",
"license": "AGPL-3.0-or-later",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"files": [
"src",
"schema",
"README.md"
],
"keywords": [
"solid",
"tinybase",
"pod",
"webid",
"linked-data",
"react",
"typescript"
],
"author": "",
"scripts": {
"dev": "vite",
"check": "npm run lint && npm run typecheck && npm run test:run",
"build": "npm run check && vite build",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepare": "husky install",
"preview": "vite preview",
"generate:schemas": "tsx scripts/generate-json-schemas.ts",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"coverage:check": "vitest run --coverage --config vitest.coverage-check.config.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:e2e": "npx bddgen && playwright test",
"test:e2e:headed": "npx bddgen && playwright test --headed",
"test:e2e:terminal": "vitest run --config vitest.terminal-e2e.config.ts",
"test:bdd": "npx bddgen && playwright test",
"cli": "tsx src/cli/run-node.tsx",
"cli:smoke": "node --import tsx src/cli/run-node.tsx help && node --import tsx src/cli/run-node.tsx pwd && node --import tsx src/cli/run-node.tsx ls"
},
"dependencies": {
"@inrupt/vocab-common-rdf": "^1.0.5",
"@inrupt/vocab-solid-common": "^0.7.5",
"ink": "^6.0.0",
"ink-web": "^0.1.11",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tinybase": "^7.3.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.0",
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.58.0",
"@storybook/addon-a11y": "^10.2.3",
"@storybook/addon-docs": "^10.2.3",
"@storybook/addon-onboarding": "^10.2.3",
"@storybook/addon-vitest": "^10.2.3",
"@storybook/react-vite": "^10.2.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-storybook": "^10.2.3",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"playwright": "^1.58.0",
"playwright-bdd": "^8.4.2",
"storybook": "^10.2.3",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "npm:rolldown-vite@7.2.5",
"vitest": "^4.0.18"
},
"overrides": {
"vite": "npm:rolldown-vite@7.2.5"
}
}