-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.27 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.27 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
{
"name": "@jsxtools/jsonc-reader",
"version": "0.0.0",
"description": "Tokenize JSONC and parse it into a compact span-based AST.",
"author": "Jonathan Neal <jonathantneal@hotmail.com> (https://jonneal.dev)",
"homepage": "https://github.com/jsxtools/jsonc-reader#readme",
"license": "MIT-0",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/jsxtools/jsonc-reader.git"
},
"bugs": {
"url": "https://github.com/jsxtools/jsonc-reader/issues"
},
"sideEffects": false,
"keywords": ["ast", "json", "jsonc", "parser", "tokenizer"],
"scripts": {
"build": "tsc --pretty",
"build:tests": "tsc -p tsconfig.test.json --pretty",
"clean": "rm -rf dist dist-test *.tsbuildinfo",
"format": "dprint fmt",
"format:check": "dprint check",
"lint": "biome check",
"lint:fix": "biome check --write",
"prepublishOnly": "npm run clean && npm run lint && npm run test",
"test": "npm run clean && npm run build && npm run build:tests && node dist-test/jsonc-reader.test.js",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@types/node": "24.12.0",
"dprint": "0.52.0",
"typescript": "5.9.3"
}
}