-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.14 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
{
"name": "safebase",
"type": "module",
"version": "1.0.0",
"description": "safebase is helps you safely compute very large numbers.",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.modern.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle",
"watch": "microbundle watch",
"test": "jest",
"release": "release-it"
},
"keywords": [
"safe",
"base",
"big",
"number",
"math",
"computation"
],
"author": "hmmhmmhm",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.13",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"microbundle": "^0.15.1",
"release-it": "^17.6.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"release-it": {
"hooks": {
"before:init": "npm run build"
}
},
"lint-staged": {
"*.ts": [
"npm run lint",
"prettier --write"
]
}
}