-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.48 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
{
"name": "@interactive-os/json-document-tanstack-table",
"version": "0.1.0-rc.0",
"description": "Official TanStack Table v8 connector for headless json-document Sheet editing.",
"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-tanstack-table"
},
"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",
"@tanstack/table-core": "^8.21.3"
},
"devDependencies": {
"@interactive-os/json-document": "*",
"@interactive-os/json-document-editing": "*",
"@tanstack/table-core": "^8.21.3",
"@types/node": "^25.9.0",
"typescript": "^5.0.0",
"vitest": "^4.1.7"
}
}