-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.84 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "pairing",
"version": "0.1.1",
"description": "Number pairing functions with support for BigInt numbers.",
"keywords": [
"elegant",
"pairing",
"szudzik",
"number",
"bigint"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/causaly/pairing.git"
},
"author": {
"name": "Causaly Team",
"email": "[email protected]",
"url": "https://www.causaly.com"
},
"contributors": [
{
"name": "Dimitrios C. Michalakos",
"email": "[email protected]",
"url": "https://github.com/jmike"
}
],
"sideEffects": false,
"types": "./build/types/index.d.ts",
"main": "./build/node/cjs/index.js",
"exports": {
".": {
"node": {
"import": "./build/node/esm/index.js",
"require": "./build/node/cjs/index.js"
},
"default": "./build/browser/esm/index.js"
}
},
"files": [
"build"
],
"engines": {
"node": "^14.17 || >=16.0.0"
},
"scripts": {
"build:node-cjs": "swc lib --config-file ./config/swc.node.cjs.json -d build/node/cjs",
"build:node-esm": "swc lib --config-file ./config/swc.node.esm.json -d build/node/esm",
"build:browser-esm": "swc lib --config-file ./config/swc.browser.esm.json -d ./build/browser/esm",
"build": "rimraf build && concurrently \"tsc -p ./tsconfig.json\" \"yarn build:node-cjs\" \"yarn build:node-esm\" \"yarn build:browser-esm\"",
"lint": "eslint lib --ext .ts",
"format": "prettier --config ./.prettierrc --ignore-path .gitignore -w .",
"test": "jest --config ./config/jest.config.ts",
"coverage": "jest --config ./config/jest.config.ts --coverage",
"changeset": "changeset",
"prerelease": "yarn build",
"release": "changeset publish"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc --write"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.18.1",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.121",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"concurrently": "^6.5.1",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "4",
"jest": "^27.0.6",
"lint-staged": "^12.1.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.2.3"
},
"peerDependencies": {
"@swc/helpers": "^0.3.2"
},
"dependencies": {
"extra-bigint": "^0.0.62"
}
}