-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.1 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
{
"name": "@crescendolab/parse-json",
"description": "A user-friendly wrapper for JSON.parse().",
"keywords": [
"json",
"typescript"
],
"homepage": "https://github.com/crescendolab-open/parse-json",
"bugs": {
"url": "https://github.com/crescendolab-open/parse-json/issues"
},
"license": "MIT",
"author": {
"name": "Crescendo lab",
"url": "https://github.com/crescendolab-open"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"test": "run-p test:*",
"test:js": "vitest",
"test:type": "vitest typecheck"
},
"dependencies": {
"type-fest": "3.x"
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "1.x",
"@types/parse-json": "4.x",
"json5": "2.x",
"npm-run-all": "4.x",
"parse-json": "6.x",
"tsafe": "1.x",
"typescript": "4.x",
"unbuild": "1.x",
"vitest": "^0.28.3"
}
}