forked from microsoft/node-jsonc-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 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
{
"name": "@smithery/jsonc-parser",
"version": "4.0.0",
"type": "module",
"description": "Scanner and parser for JSON with comments. Bundlable ESM fork of jsonc-parser.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "https://github.com/smithery-ai/jsonc-parser"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/smithery-ai/jsonc-parser/issues"
},
"files": [
"dist/index.js",
"dist/index.cjs",
"dist/index.d.ts",
"dist/impl/*.d.ts"
],
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^18.x",
"esbuild": "^0.27.0",
"mocha": "^11.7.1",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"scripts": {
"build": "node build.mjs",
"typecheck": "tsc --noEmit -p ./src/tsconfig.json",
"test": "npm run build && mocha ./dist/test/*.test.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm test"
}
}