-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 958 Bytes
/
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
{
"devDependencies": {
"@types/node": "^20.14.11",
"esbuild": "^0.23.0",
"tsx": "^4.16.2"
},
"name": "tiny-stable-stringify",
"keywords": [
"json",
"stringify",
"deterministic",
"hash",
"sort",
"stable"
],
"sideEffects": false,
"version": "0.1.3",
"type": "module",
"scripts": {
"test": "tsx test/test.ts",
"build:js": "esbuild src/index.ts --minify --format=esm --outfile=dist/index.js --sourcemap --target=node18",
"build:cjs": "esbuild src/commonjs.js --bundle --format=cjs --outfile=dist/index.cjs --sourcemap --target=node12",
"prepublishOnly": "node --run build:cjs && node --run build:js"
},
"author": "Sam Thorogood <[email protected]>",
"license": "Apache-2.0",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./types.d.ts"
},
"types": "./types.d.ts",
"module": "./dist/index.js",
"main": "./dist/index.cjs"
}