-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 1.27 KB
/
package.json
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
{
"name": "destr",
"version": "2.0.3",
"description": "A faster, secure and convenient alternative for JSON.parse",
"repository": "unjs/destr",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./lib/index.cjs"
}
},
"main": "./lib/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"bench:bun": "pnpm build && bun --bun ./test/bench.mjs",
"bench:node": "pnpm build && node ./test/bench.mjs",
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint --ext .ts . && prettier -c src test",
"lint:fix": "eslint --ext .ts . --fix && prettier -w src test",
"release": "pnpm test && pnpm build && changelogen --release --push && npm publish",
"test": "pnpm lint && vitest run --coverage"
},
"devDependencies": {
"@hapi/bourne": "^3.0.0",
"@vitest/coverage-v8": "^1.5.3",
"changelogen": "^0.5.5",
"eslint": "^8.57.0",
"eslint-config-unjs": "^0.2.1",
"mitata": "^0.1.11",
"prettier": "^3.2.5",
"secure-json-parse": "^2.7.0",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vitest": "^1.5.3"
},
"packageManager": "[email protected]"
}