-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1003 Bytes
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
{
"name": "jsontext",
"version": "0.3.0",
"description": "A state machine for incremental JSON processing with high-level APIs.",
"keywords": ["json", "streaming", "parser", "encoder"],
"license": "MIT",
"homepage": "https://github.com/lcweden/jsontext",
"repository": {
"type": "git",
"url": "git+https://github.com/lcweden/jsontext.git"
},
"bugs": {
"url": "https://github.com/lcweden/jsontext/issues"
},
"author": {
"name": "lcweden",
"url": "https://github.com/lcweden"
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.js",
"imports": {
"#src/*": ["./dist/*.js", "./dist/*.ts", "./dist/*.d.ts"]
},
"exports": {
".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }
},
"files": ["dist"],
"scripts": {
"test": "deno task test"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"engines": {
"node": ">=18"
},
"sideEffects": false
}