-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.69 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
{
"name": "@ericrovell/radix",
"version": "1.1.0",
"description": "Radix is JavaScript library for radix transformations and manipulations.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"scripts": {
"build": "rm -rf ./dist/* && rollup --config",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"publish:npm": "npm publish --access public",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit true"
},
"repository": "github:EricRovell/radix",
"keywords": [
"base",
"covert",
"decode",
"encode",
"math",
"numbers",
"number base",
"number radix",
"radix"
],
"author": "Eric Rovell",
"types": "index.d.ts",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vitest/coverage-c8": "^0.23.4",
"eslint": "^8.24.0",
"lint-staged": "^13.0.3",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"simple-git-hooks": "^2.8.0",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"vite": "^3.1.4",
"vitest": "^0.23.4"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"typings": "./dist/index.d.ts",
"homepage": "https://github.com/ericrovell/radix#readme",
"directories": {
"test": "tests"
},
"engines": {
"node": ">=10.4"
},
"sideEffects": false,
"lint-staged": {
"*.{ts,js}": "eslint"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "pnpm run lint && pnpm run typecheck"
},
"files": [
"dist",
"CHANGELOG.md"
]
}