-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 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
{
"name": "@interactive-os/json-document-id-resolver",
"version": "0.1.0",
"description": "Official stable id resolver extension functions for locating json-document document nodes by scope and id.",
"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/id-resolver"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"@interactive-os/json-document",
"id",
"json",
"headless",
"editing"
],
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "vitest run --config vitest.config.ts",
"typecheck": "tsc -p tsconfig.test.json --noEmit",
"verify": "npm run typecheck && npm test && npm run build"
},
"peerDependencies": {
"@interactive-os/json-document": "^1.0.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"vitest": "^4.1.7",
"zod": "^4.0.0",
"@interactive-os/json-document": "*"
}
}