-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
93 lines (93 loc) · 3.02 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
{
"name": "hebrew-transliteration",
"version": "2.8.0",
"description": "a package for transliterating Hebrew",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"./package.json": "./package.json",
"./schemas": {
"types": "./dist/schemas/types/index.d.ts",
"require": "./dist/cjs/schemas/index.js",
"import": "./dist/esm/schemas/index.js"
},
"./removeOptions": {
"types": "./dist/types/remove.d.ts",
"require": "./dist/cjs/remove.js",
"import": "./dist/esm/remove.js"
}
},
"typesVersions": {
"*": {
"schemas": [
"./dist/types/schemas/index.d.ts"
],
"removeOptions": [
"./dist/types/remove.d.ts"
]
}
},
"scripts": {
"build": "tsc --project ./.config/tsconfig.esm.json && tsc-alias --project ./.config/tsconfig.esm.json",
"postbuild": "esm2cjs --in dist/esm --out dist/cjs -l error",
"test": "clear && vitest --watch=false",
"test:transliterate": "clear && jest --config ./.config/jest.config.js test/transliterate.test.ts",
"test:remove": "clear && jest --config ./.config/jest.config.js test/remove.test.ts",
"test:sequence": "clear && jest --config ./.config/jest.config.js test/sequence.test.ts",
"format": "prettier --config ./.config/.prettierrc.json --write 'src/**/*.ts' 'test/**/*.ts'",
"lint": "eslint -c ./.config/eslint.config.mjs .",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "./changelog.sh && npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"updates": "ncu",
"docs:output": "typedoc --tsconfig ./.config/tsconfig.json --json ./docs/data.json src/index.ts",
"docs:dev": "astro dev --config ./docs/astro.config.mjs",
"docs": "NODE_ENV=production astro build --config ./docs/astro.config.mjs"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/charlesLoder/hebrew-transliteration.git"
},
"bugs": {
"url": "https://github.com/charlesLoder/hebrew-transliteration/issues"
},
"homepage": "https://github.com/charlesLoder/hebrew-transliteration",
"keywords": [
"hebrew",
"transliteration",
"SBL",
"Society of Biblical Literature"
],
"author": "Charles Loder",
"license": "MIT",
"devDependencies": {
"@alcalzone/esm2cjs": "^1.1.2",
"@astrojs/starlight": "^0.28.4",
"astro": "^4.16.7",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"npm-check-updates": "^17.1.9",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"starlight-typedoc": "^0.16.0",
"tsc-alias": "^1.8.10",
"typedoc": "^0.26.10",
"typedoc-plugin-markdown": "^4.2.9",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"dependencies": {
"havarotjs": "0.25.1"
}
}