-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "vulgar-fractions",
"description": "Turn integers into vulgar unicode fractions and vice-versa.",
"keywords": [
"vulgars",
"fractions"
],
"author": {
"name": "Chancellor Clark",
"email": "[email protected]"
},
"homepage": "https://github.com/chanceaclark/vulgar-fractions#readme",
"bugs": {
"url": "https://github.com/chanceaclark/vulgar-fractions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/chanceaclark/vulgar-fractions.git"
},
"version": "1.5.0",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "pnpm build:cjs && pnpm build:es && pnpm build:dt",
"build:cjs": "pnpm swc src -d dist/cjs -C module.type=commonjs --strip-leading-paths",
"build:es": "pnpm swc src -d dist/es -C module.type=es6 --strip-leading-paths",
"build:dt": "pnpm tsc --emitDeclarationOnly",
"lint": "eslint .",
"test": "jest",
"prepublishOnly": "rm -rf dist && pnpm lint && pnpm build"
},
"devDependencies": {
"@swc/cli": "^0.3.10",
"@swc/core": "^1.4.6",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
}
}