forked from flightcontrolhq/superjson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.68 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@hoseki-inc/superjson",
"version": "1.1.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hoseki-inc/superjson.git"
},
"license": "MIT",
"engines": {
"node": ">=16"
},
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.js"
},
"./package.json": "./package.json"
},
"types": "./lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"benchmark": "tsx ./benchmark.js",
"build": "tsup --config ./cfg/tsup.config.ts && pnpm build:ts",
"build:ts": "tsc --p ./cfg/tsconfig.types.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "pnpm run build",
"test:node": "vitest --config ./cfg/vitest.config.ts",
"test:ts": "tsc --project ./cfg/tsconfig.test.json",
"ts:check": "tsc"
},
"dependencies": {
"copy-anything": "^3.0.2"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/mongodb": "^3.6.12",
"@types/node": "20.11.30",
"benchmark": "^2.1.4",
"decimal.js": "^10.3.1",
"eslint-plugin-es5": "^1.5.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"mongodb": "^3.6.6",
"prettier": "3.0.2",
"tsup": "7.2.0",
"tsx": "3.14.0",
"typescript": "5.0.4",
"vitest": "1.4.0"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"lint-staged": {
"*.{ts,yaml,json,md}": "prettier --write"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}