-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "microtypejs",
"version": "1.0.0",
"main": "dist/esm/microtype.js",
"types": "dist/microtype.d.ts",
"license": "ISC",
"author": {
"name": "Tom Snelling",
"url": "https://tdjs.dev"
},
"repository": {
"url": "git+https://github.com/tdjsnelling/microtype.git"
},
"scripts": {
"build:esm": "esbuild src/microtype.ts --bundle --minify --sourcemap --loader:.ts=ts --target=es6 --format=esm --outfile=dist/esm/microtype.js",
"build:browser": "esbuild src/microtype.ts --bundle --minify --sourcemap --loader:.ts=ts --target=es6 --outfile=dist/microtype.js",
"build": "yarn build:esm && yarn build:browser && yarn types",
"types": "tsc --emitDeclarationOnly"
},
"files": [
"/dist"
],
"devDependencies": {
"@types/hyphen": "^1.6.7",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
},
"dependencies": {
"hyphen": "^1.10.4"
}
}