-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.6 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
{
"name": "@interactive-os/json-document-react",
"version": "0.1.0-rc.0",
"description": "Official React connector for json-document and its headless editing companion.",
"type": "module",
"license": "MIT",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/developer-1px/json-document.git",
"directory": "packages/json-document-react"
},
"publishConfig": {
"access": "public",
"provenance": true,
"tag": "next"
},
"files": ["dist", "!dist/.tsbuildinfo", "README.md", "LICENSE"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -b tsconfig.json",
"test": "vitest run --config vitest.config.ts",
"pretypecheck": "node ../../scripts/workspace-tasks.mjs build-dependencies",
"typecheck": "tsc -p tsconfig.test.json --noEmit",
"verify": "npm run typecheck && npm test && npm run build"
},
"peerDependencies": {
"@interactive-os/json-document": "^3.0.0",
"@interactive-os/json-document-editing": ">=0.1.0-rc.0 <1",
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@interactive-os/json-document": "*",
"@interactive-os/json-document-editing": "*",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.9.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"jsdom": "^29.1.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "^5.0.0",
"vitest": "^4.1.7"
}
}