-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.13 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
{
"name": "unicode-tex-character-converter",
"description": "A simple library to convert unicode characters to TeX and LaTeX equivalents",
"version": "1.14.4",
"$schema": "https://json.schemastore.org/package",
"browser": "./dist/index.iife.js",
"bugs": "https://github.com/Mearman/Unicode-TeX-Character-Converter/issues/new",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"rollup": "^4.12.1",
"rollup-plugin-dts": "^6.1.0",
"syncpack": "^12.3.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.2",
"wireit": "^0.14.4"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"default": "./dist/index.umd.js",
"umd": "./dist/index.umd.js"
},
"./amd": "./dist/index.amd.js",
"./cjs": "./dist/index.cjs.js",
"./iife": "./dist/index.iife.js",
"./system": "./dist/index.system.js",
"./umd": "./dist/index.umd.js"
},
"files": [
"./dist"
],
"keywords": [
"BibTeX",
"LaTeX",
"TeX",
"TeX",
"character",
"codepoint",
"converter",
"unicode"
],
"license": "Apache-2.0",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"packageManager": "[email protected]",
"publishConfig": {
"provenance": true
},
"repository": "github:Mearman/Unicode-TeX-Character-Converter",
"scripts": {
"build": "wireit",
"postversion": "git push --follow-tags && git stash pop",
"preversion": "wireit",
"syncpack": "wireit",
"test": "jest"
},
"source": "./src/index.ts",
"type": "module",
"types": "./dist/index.d.ts",
"wireit": {
"build": {
"command": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"dependencies": [
"syncpack"
],
"output": [
"./dist"
]
},
"git:stash": {
"command": "git stash --include-untracked"
},
"preversion": {
"dependencies": [
"git:stash",
"build"
]
},
"syncpack": {
"command": "syncpack fix-mismatches && syncpack format"
}
}
}